ApptiveGrid / Soil

An object oriented database that is easy to use and fun to play with
MIT License
43 stars 7 forks source link

#size for Index (SkipList and BTree) #226

Closed noha closed 1 week ago

MarcusDenker commented 9 months ago

size for now is implemented by a linear scan:

size
    "We iterate over all elements to get the size. Slow!"
    ^ self newIterator size 

This is very slow and means all pages have to be loaded.