Expand description
Simple Bloom Filter
Structs§
- Bloom
- Concurrent
Bloom - Bloom filter that can be used concurrently. Concurrent reads/writes are safe, but are not atomic at the struct level, this means that reads may see partial writes.
- Concurrent
Bloom Interval - Wrapper around
ConcurrentBloom
andAtomicInterval
so the bloom filter can be cleared periodically.
Traits§
- Bloom
Hash Index - Generate a stable hash of
self
for eachhash_index
Best effort can be made for uniqueness of each hash.