Skip to content

Commit 9afb773

Browse files
DOC-5306 updated Jedis and Lettuce versions and added node-redis CSC supported version
1 parent e32be01 commit 9afb773

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

content/develop/clients/client-side-caching.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ The following client libraries support CSC from the stated version onwards:
8181
| :-- | :-- |
8282
| [`redis-py`]({{< relref "/develop/clients/redis-py/connect#connect-using-client-side-caching" >}}) | v5.1.0 |
8383
| [`Jedis`]({{< relref "/develop/clients/jedis/connect#connect-using-client-side-caching" >}}) | v5.2.0 |
84+
| [`node-redis`]({{< relref "/develop/clients/nodejs/connect#connect-using-client-side-caching" >}}) | v5.1.0 |
8485

8586
## Which commands can cache data?
8687

content/develop/clients/jedis/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To include `Jedis` as a dependency in your application, edit the dependency file
3434
<dependency>
3535
<groupId>redis.clients</groupId>
3636
<artifactId>jedis</artifactId>
37-
<version>5.2.0</version>
37+
<version>6.0.0</version>
3838
</dependency>
3939
```
4040

@@ -46,7 +46,7 @@ To include `Jedis` as a dependency in your application, edit the dependency file
4646
}
4747
//...
4848
dependencies {
49-
implementation 'redis.clients:jedis:5.2.0'
49+
implementation 'redis.clients:jedis:6.0.0'
5050
//...
5151
}
5252
```

content/develop/clients/lettuce/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ If you use Maven, add the following dependency to your `pom.xml`:
3636
<dependency>
3737
<groupId>io.lettuce</groupId>
3838
<artifactId>lettuce-core</artifactId>
39-
<version>6.3.2.RELEASE</version> <!-- Check for the latest version on Maven Central -->
39+
<version>6.7.1.RELEASE</version> <!-- Check for the latest version on Maven Central -->
4040
</dependency>
4141
```
4242

4343
If you use Gradle, include this line in your `build.gradle` file:
4444

4545
```
4646
dependencies {
47-
compileOnly 'io.lettuce:lettuce-core:6.3.2.RELEASE'
47+
compileOnly 'io.lettuce:lettuce-core:6.7.1.RELEASE'
4848
}
4949
```
5050

0 commit comments

Comments
 (0)