#bloom-filter #scalable #foo

scalable_bloom_filter

Scalable Bloom Filter

2 releases

Uses old Rust 2015

0.1.1 Jan 16, 2018
0.1.0 Dec 27, 2017

#53 in #scalable

Download history 12/week @ 2023-11-20 11/week @ 2023-11-27 2/week @ 2023-12-04 40/week @ 2023-12-11 7/week @ 2023-12-18 14/week @ 2023-12-25 10/week @ 2024-02-19 52/week @ 2024-02-26 25/week @ 2024-03-04

87 downloads per month
Used in 3 crates (via runiq-lib)

MIT license

14KB
303 lines

scalable_bloom_filter

Documentation Build Status Code Coverage License: MIT

A Rust implementation of Scalable Bloom Filters.


lib.rs:

A Rust implementation of Scalable Bloom Filters.

Examples

use scalable_bloom_filter::ScalableBloomFilter;

let mut filter = ScalableBloomFilter::new(1000, 0.001);
filter.insert("foo");
assert!(filter.contains("foo"));

Dependencies

~57KB