Open mitchmindtree opened 1 week ago
By contiguous, we mean a continuous list of keys of some fixed length.
E.g. Given a starting key [0, 1, 2] and a length 3, we query the following:
[0, 1, 2]
3
[0, 1, 3]
[0, 1, 4]
Given the starting key [0, 9, 8] and a length of 4, we query the following:
[0, 9, 8]
4
[0, 9, 9]
[1, 0, 0]
[1, 0, 1]
If the query would overflow the fixed key length value range, we should error.
By contiguous, we mean a continuous list of keys of some fixed length.
E.g. Given a starting key
[0, 1, 2]
and a length3
, we query the following:[0, 1, 2]
[0, 1, 3]
[0, 1, 4]
Given the starting key
[0, 9, 8]
and a length of4
, we query the following:[0, 9, 8]
[0, 9, 9]
[1, 0, 0]
[1, 0, 1]
If the query would overflow the fixed key length value range, we should error.