Bloom filter is a fast, memory efficient probabilistic data structure that can quickly test whether an element is a member of a set. It can return false positive results, but never false negative results - meaning that if it returns true, the element is pr...