Bloom Filter
A Bloom Filter is a space-efficient probabilistic data structure used to check whether an element is part of a set. It is mainly used when we need fast membership testing with very little memory.
Bloom filters give answers in constant time and use co...
system-design-at-a-glance.hashnode.dev2 min read