Prefix bloom filters #97
Labels
api
enhancement
New feature or request
epic
good first issue
Good for newcomers
help wanted
Extra attention is needed
performance
test
While prefix bloom filters are pretty simple in theory, they need a Trait the user needs to implement.
Possible API:
With the prefix extractor returning an iterator, we can implement both normal prefix extraction (e.g. the first 8 characters of all keys):
or segmented prefixes (e.g.
<account_id>#<user_id>
, that could index both the hashes of<account_id>#<user_id>
and<account_id>
, which would allow filtering for queries on both account ID and account ID + user ID).The text was updated successfully, but these errors were encountered: