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

The Node.js implementation mentioned in the documentation refers to a project that has not had any activity in the past 2 years (https://github.com/mike-marcacci/node-redlock). It would be better to point to...

From this page: https://redis.com/redis-enterprise/redis-insight/ Scroll down to the "Manage streams and consumer groups" section. Now click the link "Redis Streams and consumer groups" which goes to: ``` https://redis.io/docs/stack/insight/tutorials/insight-stream-consumer ``` This...

original: > Decrements the number stored at `key` by `decrement`. If the key does not exist, it is set to `0` before performing the operation. An error is returned if...

needs-review

The `LMOVE` documentation describes the `Pattern: Reliable queue`. It ends stating that `An additional client may monitor the processing list for items that remain there for too much time, and...

The blocking feature described at: https://redis.io/docs/reference/modules/modules-blocking-ops/ is documented as experimental and: >There is no ETA for this feature but it may appear in the course of the Redis 4.0 release...

Reading this documentation page: https://redis.io/commands/copy/ Does the COPY command persist the current expiry that has been set on a key? Would be useful to clarify the documentation.

Currently, the functionality is documented in the redis.conf file and partially by the relevant v4 new/modified commands (i.e. UNLINK, FLUSH* ASYNC). Improvements may include: * A new topic page *...

waiting-to-hear-back

Hi, The Pattern: Rate limiter in command INCR doc [[1](https://github.com/antirez/redis-doc/blob/master/commands/incr.md#pattern-rate-limiter)] has a case to be invalid. When the request count haven't hit the quota, if fire huge of requests at...

needs-review

I've written a script to sum over a series of values in Redis: ``` local sum = 0 local k local v for k,v in pairs(KEYS) do local counter_value =...

In the link https://redis.io/docs/reference/modules/modules-blocking-ops/ I found the latest example code is not correct, as RedisModule_IsBlockedReplyRequest should be used the general_func other than in the Example_RedisCommand function. BRs, int general_func(RedisModuleCtx *ctx,...