ethereumjs/merkle-patricia-tree

Add secondary index

wanderer opened this issue · 1 comments

Since leveldb is more performant when fetching ordered data it may give us a speed boost to add a second index. This index would map all the hash of a given root to a uuid. then each path in the tree (with respect to the root) would be prefixed with the UUID and stored as a key with the value being the sha3 of the node.

I think this will add too much overhead to be usefull