原文地址:https://raw.githubusercontent.com/antirez/redis/7.0/00-RELEASENOTES
Introduction to the Redis 7.0 release
redis7.0版本介绍
Redis 7.0 includes several new user-facing features, significant performance optimizations, and many other improvements. It also includes changes that potentially break backwards compatibility with older versions. We urge users to review the release notes carefully before upgrading.
Redis7.0引入了一些新的面向用户的特性,重要的性能优化和一些其他的提升。它还包括一些可能会破坏旧版本的兼容性的更改。我们建议用户在升级之前仔细阅读发布说明。
In particular, users should be aware of the following changes: > 用户应特别注意一下变更:
- Redis 7 stores AOF as multiple files in a folder; see Multi-Part AOF below. > Redis 7 将 AOF文件以多文件的形式存储到一个文件夹中;参考下面的 Multi-Part AOF 说明。
- Redis 7 uses a new version 10 format for RDB files, which is incompatible with older versions. > Redis7受用了一个新版本10的RDB文件格式,这与旧版本不兼容。
- Redis 7 converts ziplist encoded keys to listpacks on the fly when loading an older RDB format. Conversion applies to loading a file from disk or replicating from a Redis master and will lightly increase loading time. > Redis7在加载旧版本的RDB格式文件时,自动将ziplist编码的键转换为listpacks。转换在从磁盘加载文件或从Redis master同步数据时触发,会略微增加加载时间。
- See sections about breaking changes mentioned below. > 参考下面的破坏性变更说明。
Here is a comprehensive list of changes in this release compared to 6.2.6. > 下面是本发布与6.2.6的比较。
Each one includes the PR number that added it so that you can get more details at https://github.com/redis/redis/pull/
新特性
- Redis Functions: A new way to extend Redis with server-side scripts (#8693) see https://redis.io/topics/functions-intro > Redis函数:新增了一种方式,用于扩展Redis服务端脚本(#8693) 参考:https://redis.io/topics/functions-intro
- ACL: Fine-grained key-based permissions and allow users to support multiple sets of command rules with selectors (#9974) see https://redis.io/topics/acl#key-permissions and https://redis.io/topics/acl#selectors. > ACL:精细化的键基于权限,并支持多个命令规则的选择器(#9974) 参考:https://redis.io/topics/acl#key-permissions and https://redis.io/topics/acl#selectors.
- Cluster: Sharded (node-specific) Pub/Sub support (#8621) see https://redis.io/topics/pubsub#sharded-pubsub > 集群:分片(节点特定)的Pub/Sub支持(#8621) 参考:https://redis.io/topics/pubsub#sharded-pubsub
- First-class handling of sub-commands in most contexts (affecting ACL categories, INFO commandstats, etc.) (#9504, #10147) > 在大多数上下文中将子命令当做一级命令处理(影响ACL类别,INFO命令统计等)(#9504,#10147)
- Command metadata and documentation (#10104) see https://redis.io/commands/command-docs, https://redis.io/topics/command-tips > 命令元数据和文档(#10104) 参考:https://redis.io/commands/command-docs, https://redis.io/topics/command-tips
- Command key-specs. A better way for clients to locate key arguments and their read/write purpose (#8324, #10122, #10167) see https://redis.io/topics/key-specs > 命令键规格。更便于客户端定位key参数及其读写目的(#8324,#10122,#10167) 参考:https://redis.io/topics/key-specs
- Multi-Part AOF mechanism to avoid AOF rewrite overheads (#9788) > 多文件AOF机制,避免AOF重写开销(#9788)
- Cluster: Support for hostnames, instead of IP addresses only (#9530) > 集群:支持主机名,而不是只支持IP地址(#9530)
- Improved management of memory consumed by network buffers, and an option to drop clients when total memory exceeds a limit (#8687) > 网络缓冲区内存消耗管理改进,和当总内存超过一定限制时,丢弃客户端的选项(#8687)
- Cluster: A mechanism for disconnecting cluster bus connections to prevent uncontrolled buffer growth (#9774) > 集群:一种机制,用于断开集群总线连接,防止无控制的缓冲区增长(#9774)
- AOF: Timestamp annotations and support for point-in-time recovery (#9326) > AOF:时间戳注释和支持时间点恢复(#9326)
- Lua: support Function flags in EVAL scripts (#10126) see https://redis.io/topics/eval-intro#eval-flags > Lua:支持EVAL脚本的函数标记(#10126) 参考:https://redis.io/topics/eval-intro#eval-flags
- Lua: Support RESP3 reply for Verbatim and Big-Number types (#9202) > Lua:支持逐字和大数字类型的RESP3回复(#9202)
- Lua: Get Redis version via redis.REDIS_VERSION, redis.REDIS_VERSION_NUM (#10066) > Lua:通过redis.REDIS_VERSION,redis.REDIS_VERSION_NUM获取Redis版本(#10066)
New user commands or command arguments
新的用户命令或命令参数
- ZMPOP, BZMPOP commands (#9484)
- LMPOP, BLMPOP commands (#9373)
- SINTERCARD, ZINTERCARD commands (#8946, #9425)
- SPUBLISH, SSUBSCRIBE, SUNSUBSCRIBE, PUBSUB SHARDCHANNELS/SHARDNUMSUB (#8621)
- EXPIRETIME and PEXPIRETIME commands (#8474)
- EXPIRE command group supports NX/XX/GT/LT options (#2795) > EXPIRE命令组支持 NX/XX/GT/LT选项(#2795)
- SET command supports combining NX and GET flags (#8906) > SET命令支持合并 NX和GET标记(#8906)
- BITPOS, BITCOUNT accepts BIT index (#9324) > BITPOS,BITCOUNT接受BIT索引(#9324)
- EVAL_RO, EVALSHA_RO command variants, to run on read-only replicas (#8820) > EVAL_RO,EVALSHA_RO命令变体,用于在只读副本上运行(#8820)
- SORT_RO command, to run on read-only replicas (#9299) > SORT_RO命令,用于在只读副本上运行(#9299)
- SHUTDOWN arguments: NOW, FORCE, ABORT (#9872)
- FUNCTION *, FCALL, FCALL_RO - https://redis.io/commands/function-load
- CONFIG SET/GET can handle multiple configs atomically, in one call (#9748, #9914) > CONFIG SET/GET可以在一次调用中原子性地处理多个配置(#9748,#9914)
- QUIT promoted to be a proper command, HOST: and POST demoted (#9798) > QUIT提升为一个真正的命令,HOST:和POST被降级(#9798)
- XADD supports auto sequence number via
-* (#9217) > XADD支持通过 <ms>-*
自动序列号(#9217)
New administrative and introspection commands and command arguments
新的管理命令、内省命令和命令参数
- COMMAND DOCS (#9656, #10056, #10104)
- COMMAND LIST (#9504)
- COMMAND INFO accepts sub-commands as args, and no args too (#9504, #10056)
- LATENCY HISTOGRAM (#9462)
- CLUSTER LINKS (#9774)
- CLUSTER DELSLOTSRANGE and CLUSTER ADDSLOTSRANGE (#9445)
- CLIENT NO-EVICT (#8687)
- ACL DRYRUN (#9974)
- SLOWLOG GET supports passing in -1 to get all entries (#9018)
Command replies that have been extended
命令回复已扩展
- COMMAND and COMMAND INFO extended with tips, key-specs and sub-commands
see https://redis.io/commands/command
>
COMMAND
命令和COMMAND INFO
命令扩展了 说明、键规格和子命令,参考:https://redis.io/commands/command - ACL CAT, COMMAND LIST list sub-commands (#10127) > ACL CAT,COMMAND LIST列出子命令(#10127)
- MODULE LIST reply includes path and args (#4848) > MODULE LIST回复包括路径和参数(#4848)
- OBJECT ENCODING returns listpack instead of ziplist (#8887, #9366) > OBJECT ENCODING返回listpack而不是ziplist(#8887,#9366)
- CLUSTER SLOTS hostname support (#9530) > CLUSTER SLOTS支持主机名(#9530)
- COMMAND command: Added the
blocking
andmodule
flags (#10104, #9656) > COMMAND命令:添加了blocking
和module
标记(#10104,#9656)
Potentially Breaking Changes
可能有破坏性的改动
- Modifying the bind parameter to a non-default value will no longer implicitly disable protected-mode (#9034)
> 修改
bind
参数为非默认值将不再隐式禁用保护模式(#9034) - Remove EVAL script verbatim replication, propagation, and deterministic execution logic (#9812) This has been deprecated and off by default since Redis 6 and is no longer supported. > 删除EVAL脚本逐字复制、传播和确定性执行逻辑(#9812)
- ACL: pub/sub channels are blocked by default (acl-pubsub-default=resetchannels) (#10181) > ACL:pub/sub 频道默认为阻塞(acl-pubsub-default=resetchannels)(#10181)
SCRIPT LOAD and SCRIPT FLUSH are no longer propagated to replicas / AOF (#9812) > SCRIPT LOAD和SCRIPT FLUSH不再传播到副本/AOF(#9812)
ACL: Declarations of duplicate ACL users in startup files and command line arguments will result in an error, whereas previously the last declaration would overwrite the others. (#9330) > ACL: 启动文件和命令行中的重复的ACL用户声明会然会错误结果,之前的最后声明将覆盖其他。(#9330)
Replication: TTLs are always replicated as absolute (not relative) millisecond timestamps (#8474) > 副本:副本复制的TTLs始终为绝对毫秒时间戳(而不是相对的)(#8474)在生成rdb时,会将TTL转换为(unix time + ttl)生成的绝对时间戳。
Fixes in handling multi-key commands with expired keys on writable replicas (#9572) > 修复在可写副本上复合键处理命令对过期键的处理(#9572)
CONFIG SET maxmemory returns before starting eviction (#10019) > CONFIG SET maxmemory在开始淘汰前返回(#10019)
AOF: The new Multi-Part mechanism stores data as a set of multiple files in a designated folder (#9788) > AOF:新的分块机制将数据存储为存储在指定的文件夹的多个文件的集合(#9788)
Remove STRALGO command, preserve LCS a standalone command which only works on keys (#9799) > 删除STRALGO命令,只保留一个LCS命令只作用于键上(#9799)
Remove gopher protocol support (#9057) > 删除gopher协议支持(#9057)
MODULE and DEBUG commands disabled (protected) by default, for better security (#9920) > MODULE和DEBUG命令默认禁用,为了更好的安全性(#9920)
Snapshot-creating and other admin commands in MULTI/EXEC transactions are now rejected (#10015) > 在MULTI/EXEC事务中现在会拒绝创建快照和调用其他管理命令(#10015)
PING is now rejected with -MASTERDOWN when replica-serve-stale-data=no (#9757) > PING命令现在在replica-serve-stale-data=no时被拒绝并返回 -MASTERDOWN(#9757)
ACL GETUSER reply now uses ACL syntax for
keys
andchannels
(#9974) > ACL GETUSER回复现在使用ACL语法来表示keys
和channels
(#9974)COMMAND reply drops
random
andsort-for-scripts
flags, which are now part of command tips (#10104) > COMMAND命令回复删除了random
和sort-for-scripts
标记,这现在是command tips
的一部分(#10104)LPOP/RPOP with count against non-existing list return null array (#10095) > LPOP/RPOP带数量参数操作不存在的list集合返回空数组(#10095)
INFO commandstats now shows the stats per sub-command (#9504) > INFO 命令统计功能现在显示每个子命令的统计(#9504)
ZPOPMIN/ZPOPMAX used to produce wrong replies when count is 0 with non-zset (#9711) > ZPOPMIN/ZPOPMAX过去在key不是zset且count为0时产生错误的回复(#9711),现在类型不正确会返回类型错误,count < 0 时会提示count要为正数
LPOP/RPOP used to produce wrong replies when count is 0 (#9692) > LPOP/RPOP当count为0时产生错误的回复,原来会返回nil,现在返回空数组(#9692)
CONFIG GET bind now returns the current value in effect, even if the implicit default is in use (#9034) >
CONFIG GET bind
现在会返回当前生效的值,即使是隐式使用的(#10021)CONFIG REWRITE now rewrites the list of modules to load (#4848) > CONFIG REWRITE现在会重写加载模块的列表(#4848)
Config: repl-diskless-sync is now set to yes by default (#10092) > Config:repl-diskless-sync现在默认设置为yes(#10092)
When shutting down, Redis can optionally wait for replicas to catch up on the replication link (#9872) > 在关闭的时候,redis可以选择性地等待副本抓取到同步链接(#9872)
Most CONFIG SET, REWRITE, RESETSTAT commands are now allowed during loading (#9878) > CONFIG SET, REWRITE, RESETSTAT命令现在可以在加载的时候使用(#9878)
READONLY and READWRITE commands are now allowed when loading and on stale replicas (#7425) > READONLY和READWRITE命令现在可以在加载和过时的副本上使用(#7425)
Fix ACL category for SELECT, WAIT, ROLE, LASTSAVE, READONLY, READWRITE, ASKING (#9208) > 修复 SELECT, WAIT, ROLE, LASTSAVE, READONLY, READWRITE, ASKING 的ACL类别(#9208)
RESET is now allowed even when on unauthenticated connections (#9798) > RESET命令现在可以在未认证的连接上使用(#9798)
SCRIPT LOAD is now allowed on stale replicas (#10126) > SCRIPT LOAD现在可以在过时的副本上使用(#10126)
Security improvements
安全改进
- Sensitive configs and commands blocked (protected) by default (#9920)
> 默认禁用的敏感配置和命令(#9920),以下三个配置默认设置为no,只能通过修改配置文件进行修改,如果修改为yes或者是local,则可以通过
config set
命令进行修改- enable-protected-configs - dbfilename, and dir configs
- enable-debug-command - block the DEBUG command
- enable-module-command - block the MODULE command
- Improve bind and protected-mode config handling (#9034) > 改进bind和protected-mode配置处理(#9034)
- Sentinel: avoid logging auth-pass value (#9652) > Sentinel:避免记录auth-pass值(#9652)
- redis-cli: sensitive commands bypass the history file (#8895)
> redis-cli:敏感命令绕过历史文件(#8895),就是说,redis-cli可以执行敏感命令,但是不会记录到历史文件中,如执行
config set requirepass 123456
命令后,在使用上下方向键翻历史时,是看不到config set requirepass
的这条历史记录的,其他的诸是auth
命令也一样。
Performance and resource utilization improvements
性能和资源利用改进
- Significant memory saving and latency improvements in cluster mode (#9356) > 集群模式下的显著的节省内存并降低延迟(#9356)
- Significant memory savings in case of many hash or zset keys (#9228) > 大量hash和zset场景下显著节省内存(#9228)
- Replication backlog and replicas use one global shared replication buffer (#9166) > 同步积压缓冲区和副本使用一个全局共享的同步缓冲区(#9166)
- Significant reduction of copy-on-write memory overheads (#8974) > 显著降低copy-on-write内存开销(#8974)
- Free unused capacity in the cluster send buffer (#9255) > 释放集群总线发送缓冲区未使用的容量(#9255)
- Memory efficiency, make full use of client struct memory for reply buffers (#8968) > 内存效率,充分利用客户端结构内存进行回复缓冲(#8968)
- Replace ziplist with listpack in Hash, List, Zset (#8887, #9366, #9740) > 将 Hash、List、Zset 的 ziplist 替换为 listpack(#8887,#9366,#9740)
- Add support for list type to store elements larger than 4GB (#9357) > 添加支持列表类型来存储大于4GB的元素(#9357)
- Reuse temporary client objects for blocked clients by module (#9940) > 通过模块重用临时客户端对象(#9940)
- Remove command argument count limit, dynamically grow argv buffer (#9528) > 删除命令参数数量限制,动态增长argv缓冲区(#9528)
- Optimize list type operations to seek from the nearest end (#9454) > 优化列表类型操作从最近的端开始搜索(#9454)
- Improvements in fsync to avoid large writes to disk (#9409) > 改进fsync以避免大量写入磁盘(#9409)
- BITSET and BITFIELD SET only propagated when the value actually changed (#9403) > BITSET和BITFIELD SET只有在值实际变化时才会传播(#9403)
- Improve latency when a client is unblocked by module timer (#9593) > 当客户端被模块定时器解除阻塞时,降低延迟(#9593)
Other General Improvements
其他一般改进
- Make partial sync possible after master reboot (#8015) > 允许master节点重启后进行部分同步(#8015)
- Always create a base AOF file when redis starts from empty (#10102) > 在redis启动时,总是创建一个基础的AOF文件(#10102)
- Replica keep serving data during repl-diskless-load=swapdb for better availability (#9323) > 副本在repl-diskless-load=swapdb时继续服务数据,以提高可用性(#9323)
Changes in CLI tools
- redis-cli –json, and -2 options (#9954) > redis-cli –json和-2选项(#9954)
- redis-cli –scan, add sleep interval option (#3751) > redis-cli –scan添加睡眠间隔选项(#3751)
- redis-cli –replica optimization, skip RDB generation (#10044) > redis-cli –replica优化,跳过RDB生成(#10044)
- redis-cli –functions-rdb, generate RDB with Functions only (#9968) > redis-cli –functions-rdb生成仅包含函数的RDB文件(#9968)
redis-cli -X, take an arbitrary arg from stdin, extend –cluster call take -x (#9980) > redis-cli -X,从stdin中获取一个任意参数,扩展–cluster调用添加-x选项(#9980)
-X
效果如下:通过echo
向输入流中输入mybasswd
值,redis-cli通过-X从输入流中获取值并赋值到passwd_tag
变量中,然后被set到password这个key中。[root@redis-7-107 data]# echo mypasswd | redis-cli -p 7011 -X passwd_tag mset username myname password passwd_tag OK [root@redis-7-107 data]# redis-cli -p 7011 get password "mypasswd\n" [root@redis-7-107 data]#
redis-benchmark -x takes an argument from stdin (#9130) > redis-benchmark -x从stdin中获取一个参数(#9130)
redis-benchmark, Added URI support (#9314) > redis-benchmark,添加URI支持(#9314)
redis-cli monitor and pubsub can be aborted with Ctrl+C, keeping the cli alive (#9347) > redis-cli monitor和pubsub可以通过Ctrl+C中断,保持cli连接不中断(#9347)在6.0版本中会直接中断cli连接并跳出的。
Platform / toolchain support related improvements
平台/工具链支持相关改进 * Upgrade jemalloc 5.2.1 (#9623) > jemalloc升级为5.2.1(#9623) * Fix RSS metrics on NetBSD and OpenBSD (#10116, #10149) > 修复NetBSD和OpenBSD上的RSS指标(#10116,#10149) * Check somaxconn system settings on macOS, FreeBSD and OpenBSD (#9972) > 检查macos,freebsd和openbsd上的somaxconn系统设置(#9972) * Better fsync on MacOS, improve power failure safety (#9545) > 更好的fsync在macos上,提高电源故障安全性(#9545)
New configuration options
新配置项
- CONFIG SET/GET can handle multiple configs in one call (#9748, #9914) > CONFIG SET/GET可以一次设置多个配置项(#9748,#9914)
- Support glob pattern matching for config include files (#8980) > 支持配置文件引入的全局规则匹配模式(#8980)
- appenddirname, folder where multi-part AOF files are stored (#9788) > appenddirname,保存多个AOF文件的文件夹(#9788)
- shutdown-timeout, default 10 seconds (#9872) > shutdown-timeout,默认10秒(#9872)
- maxmemory-clients, allows limiting the total memory usage by all clients (#8687) > maxmemory-clients,允许限制所有客户端的总内存使用(#8687)
- cluster-port, can control the bind port of cluster bus (#9389) > cluster-port,可以控制集群总线的绑定端口(#9389)
- bind-source-addr, configuration argument control IP of outgoing connections (#9142) > bind-source-addr,配置参数控制出口连接的IP(#9142)
- busy-reply-threshold, alias for the old lua-time-limit (#9963) > busy-reply-threshold,旧的lua-time-limit选项的别名(#9963)
- repl-diskless-sync-max-replicas, allows faster replication in some cases (#10092) > repl-diskless-sync-max-replicas,某些场景允许更快的复制(#10092)
latency-tracking, enabled by default, and latency-tracking-info-percentiles (#9462) > latency-tracking,默认开启,以及latency-tracking-info-percentiles选项。(#9462) > latency-tracking开启后可以通过
INFO LATENCYSTATS
命令查看延迟统计信息,latency-tracking-info-percentiles选项可以查看延迟统计信息的百分位数。默认为”50 99 99.9”127.0.0.1:7011> INFO LATENCYSTATS # Latencystats latency_percentiles_usec_info:p50=121.343,p99=188.415,p99.9=188.415 latency_percentiles_usec_auth:p50=6.015,p99=18.047,p99.9=18.047 latency_percentiles_usec_config|set:p50=15.039,p99=29.055,p99.9=29.055 latency_percentiles_usec_config|get:p50=5.023,p99=23.039,p99.9=23.039 latency_percentiles_usec_command|docs:p50=1003.519,p99=1261.567,p99.9=1261.567 latency_percentiles_usec_hello:p50=5.023,p99=6.015,p99.9=6.015 latency_percentiles_usec_scan:p50=6.015,p99=11.007,p99.9=11.007 latency_percentiles_usec_monitor:p50=1.003,p99=1.003,p99.9=1.003 latency_percentiles_usec_slowlog|get:p50=2.007,p99=10.047,p99.9=10.047 latency_percentiles_usec_get:p50=3.007,p99=7.007,p99.9=7.007 latency_percentiles_usec_set:p50=5.023,p99=18.047,p99.9=18.047 latency_percentiles_usec_mset:p50=5.023,p99=5.023,p99.9=5.023 127.0.0.1:7011> config get latency-tracking-info-percentiles 1) "latency-tracking-info-percentiles" 2) "50 99 99.9"
cluster-announce-hostname and cluster-preferred-endpoint-type (#9530) > cluster-announce-hostname and cluster-preferred-endpoint-type(#9530)效果如下
127.0.0.1:7012> config set cluster-announce-hostname gcache.gome.com.cn OK 127.0.0.1:7012> config get cluster-announce-hostname 1) "cluster-announce-hostname" 2) "gcache.gome.com.cn" 127.0.0.1:7012> cluster nodes b4b6a0a608ed9789937908e1b7feb65f7db57a44 127.0.0.1:7013@17013 master - 0 1657090967314 2 connected 5461-10922 75de31aa0e33cb647978d77e51fcbab93101ac56 127.0.0.1:7014@17014 master - 0 1657090968328 3 connected 10923-16383 5a5bdda0d956b317b309af8a29cbf8d7fe3652f0 127.0.0.1:7012@17012,gcache.gome.com.cn myself,master - 0 1657090967000 1 connected 0-5460 127.0.0.1:7012>
cluster-allow-pubsublocal-when-down (#8621) > 当设置为yes时,允许节点在集群处于下线状态时,只要它认为它拥有槽位,就可以服务pubsub shard负载。
cluster-link-sendbuf-limit (#9774) > Cluster link send buffer limit is the limit on the memory usage of an individual cluster bus link’s send buffer in bytes 集群连接发送缓冲区限制是每个集群总线连接的发送缓冲区的内存使用量的限制。
list-max-listpack-, hash-max-listpack-, zset-max-listpack-* as aliases for the old ziplist configs (#8887, #9366, #9740) > list-max-listpack-*,hash-max-listpack-*,zset-max-listpack-*为旧的ziplist配置的别名(#8887,#9366,#9740)
INFO fields and introspection changes
INFO字段和介绍变化
- INFO: latencystats section (#9462)
- INFO: total_active_defrag_time and current_active_defrag_time (#9377)
- INFO: total_eviction_exceeded_time and current_eviction_exceeded_time (#9031)
- INFO: evicted_clients (#8687)
- INFO: mem_cluster_links, total_cluster_links_buffer_limit_exceeded (#9774)
- INFO: current_cow_peak (#8974)
- INFO: Remove aof_rewrite_buffer_length (#9788)
- MEMORY STATS: Report slot to keys map size in in cluster mode (#10017)
- INFO MEMORY: changes to separate memory usage of Functions and EVAL (#9780)
- INFO MEMORY: Add mem_total_replication_buffers, change meaning of mem_clients_slaves (#9166)
- CLIENT LIST: tot-mem, multi-mem (#8687)
- CLIENT LIST, INFO: Show RESP version (#9508)
- SENTINEL INFO: tilt_mode_since (#9000)
- LATENCY: Track module-acquire-GIL latency (#9608)
Module API changes
- Add API for replying with RESP3 types (#8521, #9639, #9632)
- Add API for parsing RESP3 replies from RM_Call (#9202)
- Add RM_Call ‘0’ and ‘3’ flags to control RESP version to be used (#9202)
- Add Support for validating ACL explicitly (#9309, #9974)
- Add missing list type functionality APIs (#8439)
- Add API for yielding to Redis events during long busy jobs (#9963)
- Add API for registering other file descriptors to the Redis event loop (#10001)
- Enhance mem_usage/free_effort/unlink/copy and IO callbacks to have key name and DB index (#8999)
- Enhance mem_usage callback to get the requested sample size (#9612)
- RM_GetContextFlags: CTX_FLAGS_ASYNC_LOADING, CTX_FLAGS_RESP3 (#9323, #9202)
- Mark APIs as non-experimental (#9983)
- RM_CreateSubcommand (#9504)
- RM_KeyExists (#9600)
- RM_TrimStringAllocation (#9540)
- RM_LoadDataTypeFromStringEncver (#9537)
- RM_MonotonicMicroseconds (#10101)
- Add ReplAsyncLoad event and deprecate the ReplBackup event (#9323)
- Add RM_SetModuleOptions OPTIONS_HANDLE_REPL_ASYNC_LOAD flag (#9323)
Bug Fixes
- Fix COMMAND GETKEYS on EVAL without keys (#9733)
- Improve MEMORY USAGE with allocator overheads (#9095)
- Unpause clients after manual failover ends instead of waiting for timed (#9676)
- Lua: fix crash on a script call with many arguments, a regression in v6.2.6 (#9809)
- Lua: Use all characters to calculate string hash to prevent hash collisions (#9449)
- Prevent LCS from allocating temp memory over proto-max-bulk-len (#9817)
- Tracking: Make invalidation messages always after command’s reply (#9422)
- Cluster: Hide empty replicas from CLUSTER SLOTS responses (#9287)
- CLIENT KILL killed all clients when used with ID of 0 (#9853)
- Fix bugs around lists with list-compress-depth (#9849, #9779)
- Fix one in a blue moon LRU bug in RESTORE, RDB loading, and module API (#9279)
- Reset lazyfreed_objects info field with RESETSTAT, test for stream lazyfree (#8934)
- Fix RDB and list node compression for handling values larger than 4GB (#9776)
- Fix a crash when adding elements larger than 2GB to a Set or Hash (#9916)
- Diskless replication could not count as a change and skip next database SAVE (#9323)
- Fix excessive stream trimming due to an overflow (#10068)
- Safe and organized exit when receiving SIGTERM while loading (#10003)
- Improve EXPIRE TTL overflow detection (#9839)
- Add missed error counting for INFO errorstats (#9646)
- DECRBY LLONG_MIN caused negation overflow (#9577)
- Delay discarding cached master when full synchronization (#9398)
- Fix Stream keyspace notification and persistence triggers in consumer creation and deletion (#9263)
- Fix rank overflow in zset with more than 2B entries (#9249)
- Avoid starting in check-aof / check-rdb / sentinel modes if only the folder name contains that name (#9215, #9176)
- create the log file only after done parsing the entire config file (#6741)
- redis-cli: Fix SCAN sleep interval for –bigkeys, –memkeys, –hotkeys (#9624)
- redis-cli: Fix prompt to show the right DB num and transaction state after RESET (#9096)
- Module API: fix possible propagation bugs in case a module calls CONFIG SET maxmemory outside a command (#10019, #9890)
- Module API: carry through client RESP version to module blocked clients (#9634)
- Module API: release clients blocked on module commands in cluster resharding and down state (#9483)
- Sentinel: Fix availability after master reboot (#9438)
- Sentinel: Fix memory leak with TLS (#9753)
- Sentinel: Fix possible failover due to duplicate zero-port (#9240)
- Sentinel: Fix issues with hostname support (#10146)
- Sentinel: Fix election failures on certain container environments (#10197)