Hi
Could someone give me a use case for redis bloom?
Hi
Could someone give me a use case for redis bloom?
Hi,
As you know Bloom Filter is a space-efficient structure to see if an item has been added or not in a list.
Then some use case will be:
All these can be done without Bloom filter on a small dataset, but if you have a very large dataset it will be more efficient with Bloom filter.
Just in case, let me share the quick introduction to Redis Bloom video by @guyroyse : https://www.youtube.com/watch?v=Z9_wrhdbSC4
Excellent video to get an introduction to Redis Bloom. Thanks for sharing.