标签: python bsddb
我在Python脚本中使用bsddb,基本上是替换太大而无法放入内存的字典。查看Python wrapper的文档,我可以使用bsddb.hashopen,bsddb.btopen或bsddb.rnopen,但我不知道这些格式之间的区别是什么。我认为this link来自oracle.com上某个页面的文档页面会提供更多详细信息,但它是404.
bsddb.hashopen
bsddb.btopen
bsddb.rnopen
答案 0 :(得分:1)
BTREE应该完全留在记忆中。在您的情况下,您需要bsddb.hashopen。
查看oracle documentation以获取更多信息。