Lewin Bormann
Lewin Bormann
what is "a lot"? 10? 100? 1000?
thank you, I will try to reproduce it when I find some time!
Fundamentally, `get()` has a `&mut` receiver because depending on how often you read some items, it may trigger a compaction. That may also be the reason for lost items (although...
This is a good question! I've written leveldb-rs myself, line by line, or contributors did; however, the structure and algorithms are shaped very closely to what LevelDB (the original) implements....
Try this (and close the issue if it works, please): * get an iterator (https://docs.rs/rusty-leveldb/latest/rusty_leveldb/struct.DB.html#method.new_iter) * `seek()` to the prefix you are interested in (https://docs.rs/rusty-leveldb/latest/rusty_leveldb/trait.LdbIterator.html#tymethod.seek) * and keep iterating until...
That's a great idea, I will take a look at it
This is something I overlooked in the first iteration to gain simplicity (we now have three or four request methods used for all calls). This probably needs a way to...
I was wondering here - with async operations, is there a big difference between sending batch requests in the first place and sending several requests at once, and [join!](https://docs.rs/futures/0.3.8/futures/macro.join.html)ing/`join_all`ing them?...
That's WAI, since Perl 6 is a different language.
Easy things first - dropping all entries from the cache. Removing individual entries should also be possible, as the lookup functionality naturally exists already. I will try to take a...