-1

我有大量信息要索引并创建发布列表以供以后检索,我搜索并了解BTree Data structure适合在磁盘上存储大数据映射。

在 Python 库中,我找到了 Btree 4.08 并阅读了文档,我OOBTree module在代码中使用了将数据插入到OOBtree但我不知道该树的哪个部分必须存储在磁盘上,或者如何存储?

这是BTree Python 文档的链接:

4

1 回答 1

1

You may consider ZODB, and its BTree module. ZODB is an object database, providing an efficient way to read and write Python objects and structures to disk.

于 2013-12-27T21:29:16.557 回答