Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 382 Bytes

README.md

File metadata and controls

8 lines (7 loc) · 382 Bytes

Bloom-filter

A bloom filter is a light-weight probabilistic data structure designed to ascertain whether a given element is a member of a set.

Hash functions used

  • Standard java hashcode
  • 64 bit murmurhash implementation from here.
  • FNV1
  • FNV1-A