Skip to content

DOC-5306 updated Jedis and Lettuce versions and added node-redis CSC #1661

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 4, 2025
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
1 change: 1 addition & 0 deletions content/develop/clients/client-side-caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ The following client libraries support CSC from the stated version onwards:
| :-- | :-- |
| [`redis-py`]({{< relref "/develop/clients/redis-py/connect#connect-using-client-side-caching" >}}) | v5.1.0 |
| [`Jedis`]({{< relref "/develop/clients/jedis/connect#connect-using-client-side-caching" >}}) | v5.2.0 |
| [`node-redis`]({{< relref "/develop/clients/nodejs/connect#connect-using-client-side-caching" >}}) | v5.1.0 |

## Which commands can cache data?

Expand Down
4 changes: 2 additions & 2 deletions content/develop/clients/jedis/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ To include `Jedis` as a dependency in your application, edit the dependency file
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>5.2.0</version>
<version>6.0.0</version>
</dependency>
```

Expand All @@ -46,7 +46,7 @@ To include `Jedis` as a dependency in your application, edit the dependency file
}
//...
dependencies {
implementation 'redis.clients:jedis:5.2.0'
implementation 'redis.clients:jedis:6.0.0'
//...
}
```
Expand Down
4 changes: 2 additions & 2 deletions content/develop/clients/lettuce/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ If you use Maven, add the following dependency to your `pom.xml`:
<dependency>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
<version>6.3.2.RELEASE</version> <!-- Check for the latest version on Maven Central -->
<version>6.7.1.RELEASE</version> <!-- Check for the latest version on Maven Central -->
</dependency>
```

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

```
dependencies {
compileOnly 'io.lettuce:lettuce-core:6.3.2.RELEASE'
compileOnly 'io.lettuce:lettuce-core:6.7.1.RELEASE'
}
```

Expand Down