Chen Tianjie
Chen Tianjie
To close #11111 Add an option "withscores" to ZRANK and ZREVRANK. The conclusion in #11111 is adding 2 options `[withscore]` and `[rev]` to `zrank` like this: ``` zrank key member...
When LRU/LFU enabled, Redis does not allow using shared objects, as value objects may be shared among many different keys and they can't share LRU/LFU infomation. However `maxmemory-policy` is modifiable...
This issue was first raised in Redis community redis/redis#11780, it is a major miss from Redis 7.0, but haven't got a solution. I believe we still need to discuss this...
When LRU/LFU enabled, Valkey does not allow using shared objects, as value objects may be shared among many different keys and they can't share LRU/LFU information. However `maxmemory-policy` is modifiable...
Command syntax is now: ``` ZSCAN key cursor [MATCH pattern] [COUNT count] [NOSCORES] ``` Return format: ``` 127.0.0.1:6379> zadd z 1 a 2 b 3 c (integer) 3 127.0.0.1:6379> zscan...
We already have global stats for input traffic, output traffic and how many commands have been executed. However, some users have the difficulty of locating the IP(s) which have heavy...
#### Why fat log? We already have slowlog, which keeps a record of recent queries that take relatively long time to execute. However sometimes it is not enough for debugging....
**The problem/use-case that the feature addresses** The main problem is that while using `XREAD` or `XREADGROUP` to remotely consume a stream, this pull mode has poor performance with twice network...