Go to file
Phyks 49f4fdb55b s/UInt32/Int32 2014-10-27 22:47:56 +01:00
test Use capacity / error_rate syntax 2014-10-27 22:14:45 +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 s/UInt32/Int32 2014-10-27 22:47:56 +01:00
package.json Version 0.0.14. 2014-02-28 15:41:05 +00: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.