View Project
Blumea is a simple and efficient Bloom filter implementation for your applications. It's designed to help you determine whether an element belongs to a set in a space-efficient way.
It offers easy-to-plug bloom filter options for Node.js applications. Blumea allows users to integrate 5 variations of a bloom filter data structure.
Classical Bloom
Counting Bloom
Partitioned Bloom
Cuckoo Bloom
Scalable Bloom
About Bloom Filters
A Bloom filter is a probabilistic data structure that allows you to test if an element is in a set. It does so by using a bit array and multiple hash functions to check if a given element is likely to be in the set or not. This makes Bloom filters ideal for use cases where space is at a premium, or when you need to test for set membership quickly.
Built with