We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1e4ff1 commit 41f59c5Copy full SHA for 41f59c5
README.md
@@ -1,5 +1,5 @@
1
-# xorfilter_cpp
2
-Xor Filters: Faster and Smaller Than Bloom and Cuckoo Filters (C++)
+# fastfilter_cpp
+Fast Filter: Fast approximate membership filter implementations (C++)
3
4
## Prerequisites
5
@@ -19,8 +19,11 @@ make
19
20
## Where is your code?
21
22
-See src/xorfilter.h. This single header depends on src/hashutil.h.
+The filter implementations are in `src`, most are single header files and depend on `src/hashutil.h`:
23
+
24
+* src/bloom.h
25
+* src/xorfilter.h
26
27
## Credit
28
-The code is derived from https://github.com/efficient/cuckoofilter by Bin Fan et al.
29
+The cuckoo filter and the benchmark are derived from https://github.com/efficient/cuckoofilter by Bin Fan et al.
0 commit comments