redis-doc icon indicating copy to clipboard operation
redis-doc copied to clipboard

Redis documentation source code for markdown and metadata files, conversion scripts, and so forth

Results 217 redis-doc issues
Sort by recently updated
recently updated
newest added

- [Scaling with Redis Cluster](https://redis.io/docs/management/scaling/#redis-cluster-configuration-parameters:~:text=cluster%2Dslave%2Dvalidity%2Dfactor%20%3Cfactor%3E) - https://github.com/redis/redis/blob/7997874f4d2be9da1e26c77804569b0057c1e0a2/redis.conf#L1647 `cluster-slave-validity-factor` appears in this document, but in the latest `redis.conf` we don't see this parameter, only a more similar parameter name (`cluster-replica-validity-factor`), so...

"however currently there is no way for redis-cli to automatically rebalance the cluster checking the distribution of keys across the cluster nodes and intelligently moving slots as needed. This feature...

see https://github.com/redis/redis/pull/13133

to-be-merged

This should be updated to the time of the change which occurred 2 weeks ago, if you can update to keep it honest, it contradicts the date of License update....

This statement now became false as Redis project (2024) i.e. the company as we know it today suggests that you made it back then instead of Redis (2009) by Salvatore...

I think "Database" is ambiguous if I don't look closely.

I never read a official doc is worse than Redis Doc . It is long and smelly. And I can not understand why Redis have more than 400 commands. I...

Update distributed-locks.md: add new Ruby Implementation `redis_queued_locks` Added new ruby implementation of Redis Distributed Locks `redis_queued_locks` to the **Implementations** list. The new implementation realizes "lock request queues" feature. https://github.com/0exp/redis_queued_locks

The documentation specifies that the node js client options accepts a timeout parameter https://github.com/redis/redis-doc/blob/a8b76c9dcf0ea3c97d52dc9c8f1ec10fdc70de28/docs/connect/clients/nodejs.md?plain=1#L198 When I use this option in my Typescript Project, it tells me it `'connectTimeout' does not...

Redis returns set response for `SMEMBERS` and `SINTER` using RESP3. ``` $ redis-cli -3 127.0.0.1:6379> sinter s1 1~ "a" 127.0.0.1:6379> sinter s1 1~ "a" 127.0.0.1:6379> sinter s1 s2 (empty set)...