pagebloomfilter 1.3.0

Fast page-based Bloom filter
Documentation
  • Coverage
  • 0%
    0 out of 23 items documented0 out of 21 items with examples
  • Size
  • Source code size: 23.0 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 484.7 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2s Average build duration of successful builds.
  • all releases: 2s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • PeterRK/PageBloomFilter
    111 3 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • PeterRK
pagebloomfilter-1.3.0 has been yanked.

pagebloomfilter

Fast page-based Bloom filter for Rust. The package name is pagebloomfilter; the library crate name is pbf.

[dependencies]
pagebloomfilter = "1.3.0"
use pbf::pbf::BloomFilter;

let mut bf = pbf::new_bloom_filter(500, 0.01);
let key = b"Hello";

assert!(bf.set(key));
assert!(bf.test(key));

Source: https://github.com/PeterRK/PageBloomFilter

License: BSD-3-Clause