Expand description
Simple Bloom Filter
Structs§
- 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.
- Wrapper around
ConcurrentBloom
andAtomicInterval
so the bloom filter can be cleared periodically.
Traits§
- Generate a stable hash of
self
for eachhash_index
Best effort can be made for uniqueness of each hash.