Crate bloomur

Source
Expand description

Bloomur

Bloom filter implementation for database development.

github LoC Build codecov

docs.rs crates.io crates.io license

§Installation

  • Default

    [dependencies]
    bloomur = "0.1"
  • Using in no_std

    [dependencies]
    bloomur = { version = "0.1", default-features = false }
  • Using with alloc only

    [dependencies]
    bloomur = { version = "0.1", default-features = false, features = ["alloc"] }

§License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Re-exports§

pub use hasher::BloomHasher;

Modules§

hasher
Hashers for bloomfilter.

Structs§

Filterstd or alloc
A bloom filter builder.
FrozenFilterstd or alloc
A frozen filter.

Functions§

bits_per_keystd or alloc
Returns the bits per key required by bloomfilter based on the false positive rate.