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
Is your feature request related to a problem? Please describe.
When using timestamp, it would be nice for us to be able to retrieve the first version of a key conveniently.
Describe the solution you'd like
Having an option to seek to the smallest timestamp of a specific key in an iterator, or a get() that look for key with timestamp equal or above a certain value (rather than equal or below).
Describe alternatives you've considered
For now, we have to use iterator seek with timestamp enabled and then iterate until the very last entry (to get the smallest timestamp). Can do the same thing with successive gets. This forces to iterate over the whole range of versions, even though they are discarded immediately. Could also seek for the next key and then call prev(), but that forces to disable prefix seek.
Additional context
The text was updated successfully, but these errors were encountered:
Owner:
Is your feature request related to a problem? Please describe.
When using timestamp, it would be nice for us to be able to retrieve the first version of a key conveniently.
Describe the solution you'd like
Having an option to seek to the smallest timestamp of a specific key in an iterator, or a get() that look for key with timestamp equal or above a certain value (rather than equal or below).
Describe alternatives you've considered
For now, we have to use iterator seek with timestamp enabled and then iterate until the very last entry (to get the smallest timestamp). Can do the same thing with successive gets. This forces to iterate over the whole range of versions, even though they are discarded immediately. Could also seek for the next key and then call prev(), but that forces to disable prefix seek.
Additional context
The text was updated successfully, but these errors were encountered: