rust-bloomfilter

Bloom filters are defined by 4 interdependent values:

Guide for selecting the parameters

The values are interdependent as shown in the following calculations:

``` m = ceil((n * log(p)) / log(1.0 / (pow(2.0, log(2.0)))));

k = round(log(2.0) * m / n); ```

Benchmarks

TODO

Performance

TODO

Compliance with the probability of false positives

TODO