Go to file
Jason Davies 7100918e36 Update usage notes for [de]serialisation. 2013-05-31 21:53:14 +01:00
test Merge remote-tracking branch 'gleenn/master' into release 2012-07-09 10:56:26 +01:00
.gitignore Add node_modules to .gitignore. 2012-07-09 10:56:47 +01:00
.npmignore Add .npmignore and bump version. 2011-12-07 11:55:04 +00:00
LICENSE Bloom filter in JavaScript using FNV hash. 2011-09-04 10:25:02 +01:00
README.md Update usage notes for [de]serialisation. 2013-05-31 21:53:14 +01:00
bloomfilter.js Construct bloom filter from existing buckets. 2013-04-30 12:04:41 +01:00
package.json Construct bloom filter from existing buckets. 2013-04-30 12:04:41 +01:00

README.md

Bloom Filter

This JavaScript bloom filter implementation uses the non-cryptographic FowlerNollVo hash function for speed.

Usage

var bloom = new BloomFilter(
  32 * 256, // number of bits to allocate.
  16        // number of hash functions.
);

// Add some elements to the filter.
bloom.add("foo");
bloom.add("bar");

// Test if an item is in our filter.
// Returns true if an item is probably in the set,
// or false if an item is definitely not in the set.
bloom.test("foo");
bloom.test("bar");
bloom.test("blah");

// Serialisation. Note that bloom.buckets may be a typed array,
// so we convert to a normal array first.
var array = [].slice.call(bloom.buckets),
    json = JSON.stringify(array);

// Deserialisation. Note that the any array-like object is supported, but
// this will be used directly, so you may wish to use a typed array for
// performance.
var bloom = new BloomFilter(array, 3);

Implementation

Although the bloom filter requires k hash functions, we can simulate this using only two hash functions. In fact, we cheat and get the second hash function almost for free by iterating once more on the first hash using the FNV hash algorithm.

Thanks to Will Fitzgerald for his help and inspiration with the hashing optimisation.