Top "Redis-cluster" questions

Redis Cluster provides a way to run a Redis installation where data is automatically sharded across multiple Redis nodes.

How to delete keys matching a pattern in Redis Cluster

I have tried method in this question, but it does not work since I'm working in cluster mode, and redis …

redis redis-cluster
How to config redis-cluster when use spring-data-redis 1.7.0.M1

I use spring-data-redis version 1.7.0.M1,and jedis version 2.8.0 Here is my configuration <bean id="redisTemplate" class="org.springframework.data.…

redis spring-data-redis redis-cluster
Should I read from a Redis Cluster slave?

We have a cluster configuration for Redis used as cache. Now due to the normal pattern of write to master …

java redis jedis redis-cluster redisson
How to do Redis Data encryption?

We can secure the data while its travelling using spiped or stunnel. But How do we do that while the …

database encryption redis redis-cluster
AWS Redis Cluster - MOVE error

I try to execute a hmset command on AWS Redis Cluster, and I'm getting the following "moved" error. Not sure …

amazon-web-services redis redis-cluster
how to delete nodes from redis cluster?

I google it and found two solution: CLUSTER FORGET (http://redis.io/commands/cluster-forget) redis-trib.rb del-node I think CLUSTER …

redis redis-cluster
Using StackExchange.Redis client with Redis cluster

How do I tell StackExchange.Redis (v1.0.481) that it's about to connect to a Redis cluster (v3.2.6, in case it …

c# redis stackexchange.redis redis-cluster
[REDIS]: How to Delete All Keys on Master and Slave(s)?

I'm trying to delete all keys on both redis master and slave, but when I'm executing flushall or flushdb from …

redis redis-cluster redis-cli