blob: 206bff926754c6de2e2e29e91cd3f88e8b6717c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# rust-cascade
A Bloom filter cascade implementation in rust. This can utilize one of two hash
functions:
* MurmurHash32, or
* SHA256, with an optional salt
This implementation is designed to match up with the Python [filter-cascade
project](https://pypi.org/project/filtercascade/)
[[github](https://github.com/mozilla/filter-cascade)]
See tests in src/lib.rs to get an idea of usage.
|