Interactive Demo of Bloom Filters
jasondavies.com
Interactive Demo of Bloom Filters
1–10 of 56 posts
Re: Interactive Demo of Bloom Filters
#2https://github.com/DCSO/bloom (Go version)
https://github.com/DCSO/flor (Python version)
The Go version comes with a command line tool that allows you to use Bloom filters on the shell.
Re: Interactive Demo of Bloom Filters
#3Re: Interactive Demo of Bloom Filters
#4Re: Interactive Demo of Bloom Filters
#5 a
2
c
collides with: fRe: Interactive Demo of Bloom Filters
#6obligatory mention that if you are interested in this you should also know about cuckoo filters: https://www.cs.cmu.edu/~dga/papers/cuckoo-conext2014.pdf https://en.wikipedia.org/wiki/Cuckoo_hashing
Re: Interactive Demo of Bloom Filters
#7If anyone just wanted to see a collision: a 2 c collides with: f
Re: Interactive Demo of Bloom Filters
#8This could be a good use case for WebAssembly, which supports 64-bit math natively.
Re: Interactive Demo of Bloom Filters
#9You don't need more than one hash function. Just append an incrementing token onto the input before each successive hash.
But that's a new hash function then.
Re: Interactive Demo of Bloom Filters
#10obligatory mention that if you are interested in this you should also know about cuckoo filters: https://www.cs.cmu.edu/~dga/papers/cuckoo-conext2014.pdf https://en.wikipedia.org/wiki/Cuckoo_hashing