Hello everyone,My name is Michael and I have some very detail question about RedisBloom Bloom Filter,In redis cluster mode,is the data store in RedisBloom Filter distributed to all cluster node?
I've read https://oss.redislabs.com/redisbloom/Bloom_Commands/ but could not find the answer.
Looking for your reply.
Hi,
Each bloom and cuckoo filter is one key in the redis Keyspace.
The reason why there is a need to chop down a filter into chunks is the limit redis has on returning a key larger than 512 MB.
Since a filter can be larger than this limit, there is a need to pass the user chunks.
But back to your question, each filter takes a single key.
Cheers