-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Using get-range
with raw prefix keys
#29
Comments
I read up some more on fdb and the thing I was missing were |
Would you also be interested in a PR with a version for |
I'd happily review a PR which adds supports for KeySelectors and limit / skip / cursors to Re: returning keys in order, that is the default behaviour of FDB if I understand correctly, and so it should be happening already. (sorted by byte representation / packing) |
ReRe: returning keys in order. You currently accumulating the result of |
Oops, sorry. I replied without looking at the code. Yes, I don't mind a new function which returns tuples in the correct order, instead of returning a key->value map. Thinking out loud about how to return the range in the correct order:
Let me think through the preferred implementation. Happy to hear your thoughts as well. |
Hey, thanks for the library.
I am trying to use it with raw byte buffers (well for reasons...). The following piece of code illustrates the issue
So essentially I am struggling how to query for all values that satisfy a certain raw prefix in a subspace. Is this possible with your wrapper? I tried all kinds of variations for
get-range
but it never returned anything useful.The text was updated successfully, but these errors were encountered: