The fastest Bloom filter in Rust. No accuracy compromises. Compatible with any hasher.
fastbloom is a fast, flexible, and accurate Bloom filter implemented in Rust. fastbloom's default hasher is SipHash-1-3 using randomized keys but can be seeded or configured to use any hasher. fastbloom is 2-400 times faster than existing Bloom filter implementations.
Due to a different (improved!) algorithm in 0.12.x, BloomFilter
s have incompatible serialization/deserialization with 0.11.x!
# Cargo.toml
[dependencies]
fastbloom = "0.12.0"
Basic usage:
use fastbloom::BloomFilter;
let mut filter = BloomFilter::with_num_bits(1024).expected_items(2);
filter.insert("42");
filter.insert("π¦");
Instantiate with a target false positive rate:
use fastbloom::BloomFilter;
let filter = BloomFilter::with_false_pos(0.001).items(["42", "π¦"]);
assert!(filter.contains("42"));
assert!(filter.contains("π¦"));
Use any hasher:
use fastbloom::BloomFilter;
use ahash::RandomState;
let filter = BloomFilter::with_num_bits(1024)
.hasher(RandomState::default())
.items(["42", "π¦"]);
Bloom filters are space-efficient approximate membership set data structures supported by an underlying bit array to track item membership. To insert/check membership, a number of bits are set/checked at positions based on the item's hash. False positives from a membership check are possible, but false negatives are not. Once constructed, neither the Bloom filter's underlying memory usage nor number of bits per item change. See more.
hash(4) βββββββ¬ββββββ¬ββββββββββββββββ
β β β
0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0
β β β
βββββββββββββ΄ββββββββββββ΄ββββ hash(3) (not in the set)
fastbloom is blazingly fast because it efficiently derives many index bits from only one real hash per item and leverages other research findings on Bloom filters. fastbloom employs "hash composition" on two 32-bit halves of an original 64-bit hash. Each subsequent hash is derived by combining the original hash value with a different constant using modular arithmetic and bitwise operations. This results in a set of hash functions that are effectively independent and uniformly distributed, even though they are derived from the same original hash function. Computing the composition of two original hashes is faster than re-computing the hash with a different seed. This technique is explained in depth in this paper.
Hashers used:
- xxhash: sbbf
- Sip1-3: bloom, bloomfilter, probabilistic-collections
- ahash: fastbloom
fastbloom does not compromise accuracy. Below is a comparison of false positive rates with other Bloom filter crates:
-
rand
- Enabled by default, this has theDefaultHasher
source its random state usingthread_rng()
instead of hardware sources. Getting entropy from a user-space source is considerably faster, but requires additional dependencies to achieve this. Disabling this feature by usingdefault-features = false
makesDefaultHasher
source its entropy usinggetrandom
, which will have a much simpler code footprint at the expense of speed. -
serde
-BloomFilter
s implementSerialize
andDeserialize
when possible.
- Bloom filter - Wikipedia
- Bloom Filter - Brilliant
- Bloom Filter Interactive Demonstration
- Cache-, Hash- and Space-Efficient Bloom Filters
- Less hashing, same performance: Building a better Bloom filter
- A fast alternative to the modulo reduction
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.