Use Cases

Hi,

Could someone give me a use case for redis bloom?

Thanks

Hello,

Here are two examples -

  • A game developer wants to give a bonus for all players exactly once during a 7 days period. The developer can maintain a hash table with the details of players who received the reward. This will work well but require a huge amount of memory. A Bloom Filter, with 1-byte space complexity per expects item, will do the job with high accuracy and possibly faster execution time.

  • Remembering which articles were recommended to a website reader.

Hope this help,

Ariel

Hi,
Check this link:

https://elenakolevska.com/blog/bloom-filters-in-redis/

It contains a useful information

Regards