4 Comments
Sep 26, 2023Liked 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
author

Good catch, Kyle! I corrected it. Thank you.

Expand full comment
Sep 14, 2023Liked by Abhinav Upadhyay

Awesome article - shared it with people on my slack channels

Expand full comment
author

Thank you so much, Robert! :-)

Expand full comment