Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions SWAP-RELEASENOTES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
================================================================================
ror-1.4.12 Released Thu Jul 9 00:00:00 CST 2026
================================================================================
* [fix] open RocksDB checkpoint column families in read-only mode to avoid child hang from background compaction.
* [fix] move initStatsSwap after swapThreadsInit so per-thread CPU monitoring starts after the threads are up.

================================================================================
ror-1.4.11 Released Tue Jun 2 00:00:00 CST 2026
================================================================================
Expand Down
5 changes: 5 additions & 0 deletions XREDIS-RELEASENOTES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
================================================================================
xredis-2.2.5 Released Thu Jul 9 00:00:00 CST 2026
================================================================================
* [feat] add GTID gap log to track and replay transactions missed during master-replica disconnects.

================================================================================
xredis-2.2.4 Released Thu Apr 9 00:00:00 CST 2026
================================================================================
Expand Down
2 changes: 1 addition & 1 deletion redis.conf
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ repl-disable-tcp-nodelay no
#
# A value of 0 means to never release the backlog.
#
# repl-backlog-ttl 3600
# repl-backlog-ttl 10800

# The replica priority is an integer number published by Redis in the INFO
# output. It is used by Redis Sentinel in order to select a replica to promote
Expand Down
2 changes: 1 addition & 1 deletion ror.conf
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ repl-disable-tcp-nodelay no
#
# A value of 0 means to never release the backlog.
#
# repl-backlog-ttl 3600
# repl-backlog-ttl 10800

# The replica priority is an integer number published by Redis in the INFO
# output. It is used by Redis Sentinel in order to select a replica to promote
Expand Down
2 changes: 1 addition & 1 deletion src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -3185,7 +3185,7 @@ standardConfig configs[] = {
#endif

/* Other configs */
createTimeTConfig("repl-backlog-ttl", NULL, MODIFIABLE_CONFIG, 0, LONG_MAX, server.repl_backlog_time_limit, 60*60, INTEGER_CONFIG, NULL, NULL), /* Default: 1 hour */
createTimeTConfig("repl-backlog-ttl", NULL, MODIFIABLE_CONFIG, 0, LONG_MAX, server.repl_backlog_time_limit, 60*60*3, INTEGER_CONFIG, NULL, NULL), /* Default: 1 hour */
createOffTConfig("auto-aof-rewrite-min-size", NULL, MODIFIABLE_CONFIG, 0, LLONG_MAX, server.aof_rewrite_min_size, 64*1024*1024, MEMORY_CONFIG, NULL, NULL),

/* ctrip configs */
Expand Down
2 changes: 1 addition & 1 deletion src/ctrip.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#ifndef SRC_CTRIP_H_
#define SRC_CTRIP_H_

#define XREDIS_VERSION "2.2.4"
#define XREDIS_VERSION "2.2.5"
#define CONFIG_DEFAULT_SLAVE_REPLICATE_ALL 0

void xslaveofCommand(client *c);
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#define REDIS_VERSION "6.2.6"
#define REDIS_VERSION_NUM 0x00060206
#define SWAP_VERSION "1.4.11"
#define SWAP_VERSION "1.4.12"
Loading