yowcow / goromdb

Yet another single process KVS server implemented over file-based database
The Unlicense
12 stars 5 forks source link

Replace AllKeys() method with Cursor() #56

Closed yowcow closed 6 years ago

yowcow commented 6 years ago

AllKeys() wastefully allocate large slice and not so much meaningful.

Instead, let storages create their own cursor for iteration to allow handlers to use cursor for any purpose.