2011-12-06 23:49:46 +00:00
2011-09-05 13:48:44 +01:00
2011-12-06 23:49:46 +00:00
2011-12-06 23:31:54 +00:00
2011-09-04 18:30:37 +01:00

Bloom Filter

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

Although the bloom filter requires n 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.

Description
No description provided
Readme 122 KiB
Languages
JavaScript 100%