-
Notifications
You must be signed in to change notification settings - Fork 922
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate Xor filters #239
Comments
I guess I have no specific objection; an xor filter looks like just a slightly more memory-efficient form of Bloom filter?
you'd make it more like
(Think about the naming of |
No. See also: https://github.com/skeeto/xf8 (C99). |
@data-man We have fuse filters, which are even better. Our C implementation is available there: https://github.com/FastFilter/xor_singleheader I invite you to read the paper... https://arxiv.org/abs/2201.01174 It can be much faster and much smaller than a Bloom filter, but it is immutable. |
(That is, you provide your keys and you build the filter once. If your keys change, you rebuild the filter.) |
The reference implementation: xor_singleheader
If you don't mind the idea, I can start working on it. ;)
The text was updated successfully, but these errors were encountered: