Skip to content

Commit 41f59c5

Browse files
Update README.md
1 parent d1e4ff1 commit 41f59c5

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# xorfilter_cpp
2-
Xor Filters: Faster and Smaller Than Bloom and Cuckoo Filters (C++)
1+
# fastfilter_cpp
2+
Fast Filter: Fast approximate membership filter implementations (C++)
33

44
## Prerequisites
55

@@ -19,8 +19,11 @@ make
1919

2020
## Where is your code?
2121

22-
See src/xorfilter.h. This single header depends on src/hashutil.h.
22+
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
2326

2427
## Credit
2528

26-
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

Comments
 (0)