Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Leaf is the element on the deepest level in the tree. All objects that are referenced in one leaf have the same indexing path.

LeafingBranch

 

Warning
titleRemoved

Leafing branch was removed due of the conclusions that memory space it takes are too expensive. The speed in query gained was very small on the other hand.

 

LeafingBranch is the special type of branch that has an extended functionality to hold references to all objects that are indexed in this branch. This means that same element can be referenced from one leaf, but also many leafing branches. The advantage is speeding up the queries that need to traverse through whole branch because query does not define property for lower level branching. In this case, leafing brunch can just return results from its own leaf, with no need to look into all tree components below it. The disadvantage is the memory size needed for the indexing structure, because it rises linearly depending on the number of levels that use leaf branch.

...