fastbloom icon indicating copy to clipboard operation
fastbloom copied to clipboard

A fast bloom filter implemented by Rust for Python! 10x faster than pybloom!

Results 3 fastbloom issues
Sort by recently updated
recently updated
newest added

Thank you so much for this crate. Many serious applications of fastbloom may need serialization and deserialization support. Is this planned?

Hi! I'd like to share my bloom filter output to Java services. Are there any Java libs that are compatible with the data structure provided by fastbloom? Thanks

You should know that the use of `#[cfg(target_pointer_width = "64")]` and the 32 equivalent makes this crate incompatible with serde, as a filter serialised on a 64bits arch, sent over...