rbloom

Crates.iorbloom
lib.rsrbloom
version0.1.0
sourcesrc
created_at2023-10-02 16:09:30.322474
updated_at2023-10-02 16:09:30.322474
descriptionsimple, efficient and minimalistic bloom filter
homepagehttps://github.com/jedisct1/rust-bloom-filter
repositoryhttps://github.com/jedisct1/rust-bloom-filter
max_upload_size
id990102
size6,776
Yair Vogel (yairvogel)

documentation

README

rbloom - Fast Bloom Filter


rbloom is a small, simple and fast bloom filter, focused on speed and ease of use. rbloom focuses on bloom filter data structure and doesn't get in the way of the user.

Features

  • Type Agnostic: rbloom doesn't enforce type safety by design. As long as your item is core::hash::Hash, it fits into the bloom filter. To enforce any type limitiations, you can always use a thin wrapper around rbloom.
  • Percision Estimation: a bloom filter guarantees no FNs (returning false when an item is not in the bloom filter) but it might have FPs (returning true even though an item is not in the bloom filter). rbloom lets you tweak that FP rate.
  • Low Memory Footprint: rbloom uses bitvec as its underlying data manager, which uses compact bit arrangement and access.
Commit count: 179

cargo fmt