Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Index Fabric (layered Patricia trie)

I'm currently trying to implement the Index Fabric for a dna sequence data search system:

Index fabric algorithm

I could implement the normal patricia trie, but I still couldn't understand how to add layers. I also tried google but couldn't find enough information about adding layers to the patricia trie there either. In the paper mentioned above they came straightly with the layered trie which seems like witchcraft to me (just kidding, last part). Does anyone have experience in implementing the Index Fabric architecture, and if so, can you guys kindly share your experience with me?

Thanks in advance
Nuwan

like image 262
Nuwan Avatar asked Jun 08 '09 01:06

Nuwan


1 Answers

Are you at all familiar with B-trees? Detailed descriptions of B-trees shouldn't be hard to come by, and the Index Fabric really isn't much more than a mash-up of a Patricia trie and a B-tree.

like image 177
Dave Avatar answered Oct 19 '22 13:10

Dave