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
Currently we're using a single suffix array for all keys.
However having one search structure per key is more flexible since we can use different structures per key.
A query is computed as follows: @<key>:<value> -> use respective structure for key <key> @<key-prefix> -> use suffix array containing just the keys string -> use suffix array containing the "important" keys
The text was updated successfully, but these errors were encountered:
Currently we're using a single suffix array for all keys.
However having one search structure per key is more flexible since we can use different structures per key.
A query is computed as follows:
@<key>:<value>
-> use respective structure for key<key>
@<key-prefix>
-> use suffix array containing just the keysstring
-> use suffix array containing the "important" keysThe text was updated successfully, but these errors were encountered: