A Bloom Filter Search is a fast, space-efficient way to test whether an element might be in a set.
A Bloom filter is a space-efficient probabilistic data structure that is used to test whether an element is a member of a set. It can tell you that an element either "possibly in set" or "definitely not in set". False positive matches are possible, reportWindow false negatives are not.