Bloom Filter¶
A Bloom filter is a space-efficient probabilistic data structure used to test whether an element is a member of a set. It can return false positives, indicating an element might be in the set when it’s not, but never false negatives, if it says the element is not in the set, it’s definitely not.
See also Bloom Filter in PHP.
Related : Algorithm
Related packages : pleonasm/bloom-filter