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
{{ message }}
This repository has been archived by the owner on Sep 23, 2023. It is now read-only.
Now RecSplit index has 2 modes: 1-layer and 2-layer (in code it called rs.Enum).
Both of this modes encode values (passed by rs.AddKey(key, value)).
E3 need (if possible) add 3-rd mode: which behaves like 2-layer mode - enumerate keys - but doesn't store 2-nd layer on disk - no values at all. Example: add keys as rs.AddKey(key, 0) and then read as keyNumber := indexReader.Lookup(key).
Add tests for 3-rd mode.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Now RecSplit index has 2 modes: 1-layer and 2-layer (in code it called rs.Enum).
Both of this modes encode values (passed by
rs.AddKey(key, value)
).E3 need (if possible) add 3-rd mode: which behaves like
2-layer
mode - enumerate keys - but doesn't store 2-nd layer on disk - no values at all. Example: add keys asrs.AddKey(key, 0)
and then read askeyNumber := indexReader.Lookup(key)
.Add tests for 3-rd mode.
The text was updated successfully, but these errors were encountered: