You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Huge btrees are currently very expensive to iterate over. The caching currently in place grows very large and isn’t very efficient.
Currently all the already known keys and items are cached for each level of the tree. Perhaps this should also be LRU cached. The node header (and buffer) are also cached. This should maybe also be LRU cached somewhere else.
The text was updated successfully, but these errors were encountered:
Huge btrees are currently very expensive to iterate over. The caching currently in place grows very large and isn’t very efficient.
Currently all the already known keys and items are cached for each level of the tree. Perhaps this should also be LRU cached. The node header (and buffer) are also cached. This should maybe also be LRU cached somewhere else.
The text was updated successfully, but these errors were encountered: