Skip to content

Commit c7d1cd3

Browse files
author
chenby
committed
changelog
1 parent 712e63d commit c7d1cd3

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Table of Contents ([中文说明](./README.zh_CN.md))
7272
[![Hex.pm](https://img.shields.io/hexpm/l/plug.svg?maxAge=2592000)](https://github.com/leonchen83/redis-replicator/blob/master/LICENSE)
7373
[![LICENSE](https://img.shields.io/badge/license-Anti%20996-blue.svg?style=flat-square)](./ANTI-996-LICENSE)
7474

75-
Redis Replicator is an implementation of the Redis Replication protocol written in Java. It can parse, filter, and broadcast RDB and AOF events in real-time. It can also synchronize Redis data to a local cache or a database. In this document, `Command` refers to writable commands (e.g., `set`, `hmset`) and excludes readable commands (e.g., `get`, `hmget`). Supports Redis 8.0.x and older versions.
75+
Redis Replicator is an implementation of the Redis Replication protocol written in Java. It can parse, filter, and broadcast RDB and AOF events in real-time. It can also synchronize Redis data to a local cache or a database. In this document, `Command` refers to writable commands (e.g., `set`, `hmset`) and excludes readable commands (e.g., `get`, `hmget`). Supports Redis 8.4.x and older versions.
7676

7777
## 1.2. Chat with Author
7878

@@ -87,7 +87,7 @@ Redis Replicator is an implementation of the Redis Replication protocol written
8787
- **Compile:** JDK 9+
8888
- **Runtime:** JDK 8+
8989
- **Maven:** 3.3.1+
90-
- **Redis:** 2.6 - 8.0
90+
- **Redis:** 2.6 - 8.4
9191

9292
## 2.2. Maven Dependency
9393
```xml
@@ -114,7 +114,8 @@ mvn clean install package -DskipTests
114114

115115
| **Redis Version** | **redis-replicator Version** |
116116
|-------------------|------------------------------|
117-
| [2.6, 8.2.x] | [3.10.0, ] |
117+
| [2.6, 8.4.x] | [3.11.0, ] |
118+
| [2.6, 8.2.x] | [3.10.0,3.10.0] |
118119
| [2.6, 8.0.x] | [3.9.0, 3.9.0] |
119120
| [2.6, 7.2.x] | [3.8.0, 3.8.1] |
120121
| [2.6, 7.0.x] | [3.6.4, 3.7.0] |

README.zh_CN.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
[![Hex.pm](https://img.shields.io/hexpm/l/plug.svg?maxAge=2592000)](https://github.com/leonchen83/redis-replicator/blob/master/LICENSE)
7373
[![LICENSE](https://img.shields.io/badge/license-Anti%20996-blue.svg?style=flat-square)](./ANTI-996-LICENSE_CN)
7474

75-
Redis Replicator是一款RDB解析以及AOF解析的工具. 此工具完整实现了Redis Replication协议. 支持SYNC, PSYNC, PSYNC2等三种同步命令. 还支持远程RDB文件备份以及数据同步等功能. 此文中提到的 `命令` 特指Redis中的写(比如 `set`,`hmset`)命令,不包括读命令(比如 `get`,`hmget`), 支持的redis版本范围从2.6到8.0.x
75+
Redis Replicator是一款RDB解析以及AOF解析的工具. 此工具完整实现了Redis Replication协议. 支持SYNC, PSYNC, PSYNC2等三种同步命令. 还支持远程RDB文件备份以及数据同步等功能. 此文中提到的 `命令` 特指Redis中的写(比如 `set`,`hmset`)命令,不包括读命令(比如 `get`,`hmget`), 支持的redis版本范围从2.6到8.4.x
7676

7777
## 1.2. QQ讨论组
7878

@@ -87,7 +87,7 @@ Redis Replicator是一款RDB解析以及AOF解析的工具. 此工具完整实
8787
编译最低jdk版本 jdk9+
8888
运行最低jdk版本 jdk8+
8989
maven-3.3.1+
90-
redis 2.6 - 7.0
90+
redis 2.6 - 8.4
9191

9292
## 2.2. Maven依赖
9393
```xml
@@ -101,7 +101,7 @@ redis 2.6 - 7.0
101101
## 2.3. 安装源码到本地maven仓库
102102

103103
```
104-
step 1: 安装 jdk-9.0.x (或 jdk-11.0.x)
104+
step 1: 安装 jdk-11.0.x
105105
step 2: git clone https://github.com/leonchen83/redis-replicator.git
106106
step 3: $cd ./redis-replicator
107107
step 4: $mvn clean install package -DskipTests
@@ -111,7 +111,8 @@ redis 2.6 - 7.0
111111

112112
| **Redis Version** | **redis-replicator Version** |
113113
|-------------------|------------------------------|
114-
| [2.6, 8.2.x] | [3.10.0, ] |
114+
| [2.6, 8.4.x] | [3.11.0, ] |
115+
| [2.6, 8.2.x] | [3.10.0,3.10.0] |
115116
| [2.6, 8.0.x] | [3.9.0, 3.9.0] |
116117
| [2.6, 7.2.x] | [3.8.0, 3.8.1] |
117118
| [2.6, 7.0.x] | [3.6.4, 3.7.0] |

0 commit comments

Comments
 (0)