4 Comments
Sep 26Liked by Abhinav Upadhyay

This is very interesting.

I think this is incorrect:

// check if 'a' and 'b' are present in the bloom filter

bloom_filter & mask != 0;

I believe it's supposed to be this:

// check if 'a' and 'b' are present in the bloom filter

bloom_filter & mask == mask;

Expand full comment
Sep 14Liked by Abhinav Upadhyay

Awesome article - shared it with people on my slack channels

Expand full comment