Closed ankbul closed 10 years ago
I've hacked a solution to this problem by implementing a key provider. You can view the changeset here:
https://github.com/scopely/Orestes-Bloomfilter/tree/redis-bits-multiple-filter-support
Hi thanks for your code. We are adding this feature (to be released next week). It will introduce named Bloom filters as well as better concurrency and error handling.
Hi, you can now have multiple Bloomfilters!
Hi,
I'm in a distributed environment where servers will be adding to shared bloom filters. Currently, there's no way to reference an existing bloom filter if a server disconnects and then wants to reconnect. It seems as if two instantiations will connect to the same bloom filter.
For example, consider this use-case:
What is needed is an ability to associate a key to the bloom filter. That would allow us to reference the bloom filter after a disconnect.