35
Bloom filters: real-world applications
(llimllib.github.io)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
Cool, so in this case your filter is basically a classifier ML model. How would you set the hash functions then though?
Usually it's a bunch of different string hashes of the text content. They could be different hashing algorithms, but it's more common to take a single hash algorithm and simply create a bunch of hash functions that operate on different parts of the data.
If it's not text data, there's a whole bunch of other hashing strategies but I only ever saw bloom filters used with text.