문제

I have large information to index and create posting List for retrieval later, I searched and understood that BTree Data structure is suitable to store large data mapping on disk.

In The python Libraries I found Btree 4.08 and read the Document, I used OOBTree module in my code, insert data to OOBtree but I don't know which part of this tree must be stored on disk, or how to store?

Here is link for BTree Python Document:

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top