redis
redis copied to clipboard
Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bi...
Please keep in mind that this issue tracker should be used for reporting bugs or proposing improvements to the Redis server. Generally, questions about using Redis should be directed to...
The 'getset' operation first use `getGenericCommand()` to perform get operation, and then use `setKey()` to perform set. `getGenericCommand()` calls `lookupKeyReadOrReply()` to look for the key and reply. Then `setKey()` calls...
**Describe the bug** We have a redis sentinel setup with 3 redis instances and 3 sentinels. When the master redis node crashes and restarts, the cluster does not failover to...
**The problem/use-case that the feature addresses** I got a env running redis for 3-4 years long, eventually found there is no "year info" in redis logs like below: +++ 2288:S...
## Issue During the client input/output buffer processing, the memory usage is incrementally updated to keep track of clients going beyond a certain threshold `maxmemory-clients` to be evicted. However, this...
**The problem/use-case that the feature addresses** Redis Sentinel can be hard to use, since every programming language and framework is dependant on the more or less well implemented version of...
1. Added a new "shard_id" field to "cluster nodes" output and nodes.conf after "hostname" 2. Added a new entry "shard_id" to "cluster shards" at the beginning of every shard 3....
From Yossi's comment, we should drop the shard ID from here. _Originally posted by @madolson in https://github.com/redis/redis/pull/10536#discussion_r977966587_
Hello, I'm implementing a client for redis cluster in ruby. https://github.com/redis-rb/redis-cluster-client I'm trying to test the client under resharding and scale reading conditions. But it seems that replica nodes don't...
When using redis-cli to connect to the remote redis server, redis-cli will have to wait more than 1 minutes to return an error if the network fails. When redis-cli is...