Live data from Hacker News

Interactive Demo of Bloom Filters

jasondavies.com

1–10 of 56 posts

Re: Interactive Demo of Bloom Filters

#2
If you're interested in using Bloom filters in the backend, we (at DCSO) have written efficient and interoperable open-source implementations in Python and Go, also using FNV-1 hashing:

https://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

#6
post #4

obligatory 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

...and a shameless plug for my (WIP) Redis Module that doesn't implement a "bloomy" interface, for once

https://github.com/kristoff-it/redis-cuckoofilter

Re: Interactive Demo of Bloom Filters

#10
post #4

obligatory 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

Do you have a tldr for how/when it is better than bloom filters?
Post reply on HN