| Crates.io | concurrent-bloom-rs |
| lib.rs | concurrent-bloom-rs |
| version | 0.1.1 |
| created_at | 2025-03-27 10:41:01.75928+00 |
| updated_at | 2025-03-28 03:04:24.836943+00 |
| description | thread-safe bloom filter |
| homepage | https://github.com/mbver/concurrent-bloom-rs |
| repository | https://github.com/mbver/concurrent-bloom-rs |
| max_upload_size | |
| id | 1607798 |
| size | 17,398 |
A concurrent Bloom filter implementation in Rust, designed for efficiency and thread safety.
let bloom = Bloom::new(1000, 0.01);
bloom.insert("example");
if bloom.contains("example") {
println!("Item might be present");
} else {
println!("Item is definitely not present");
}
bloom.reset();
MIT