A Rust implementation of Scalable Bloom Filters.
- Reduce the number of hash function invocations:
A standard technique from the hashing literature is to use two hash functions
h1(x)
andh2(x)
to simulate additional hash functions of the formgi(x) = h1(x)+ih2(x)
(Less Hashing, Same Performance: Building a Better Bloom Filter )