bloom-filter
Scalable bloom filter implementation in rust with roaring-bitmap.
This crate is built on top of the variant of Bloom filters from:
F. Chang, W. chang Feng, K. Li, Approximate caches for packet classification.
Installation
[]
= "*"
Usage
extern crate roaring_bloom_filter as bloom_filter;
// Create bloom filter
let mut bf = new;
// You can add any value that implement std::hash::Hash
bf.add;
bf.add;
bf.add;
// Check if exist
bf.contains
TODO
- Base bloom filter
- Scalable bloom filter