Bloom Filters
They are a probabilistic data structure. It is just a bit array. This is used in conjunction with Disk. So every time instead of querying the disk once can check the bloom filter and know if it’s absent. Let’s take size as 8. _ _ _ _ _ _ _ _ _ If you get […]