Skip to content

Commit 322b346

Browse files
DOC-4037 added note about minimum Redis version
1 parent 84a24e2 commit 322b346

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

content/develop/connect/clients/java/jedis.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,8 @@ All of the connection variants described above accept these parameters, so you c
213213
use client-side caching with a connection pool or a cluster connection in exactly the same way.
214214

215215
{{< note >}}Client-side caching requires Jedis v5.2.0 or later.
216+
To maximize compatibility with all Redis products, client-side caching
217+
is supported by Redis v7.4 or later.
216218
{{< /note >}}
217219

218220
```java

content/develop/connect/clients/python/redis-py.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,11 @@ The example below shows the simplest client-side caching connection to the defau
139139
All of the connection variants described above accept these parameters, so you can
140140
use client-side caching with a connection pool or a cluster connection in exactly the same way.
141141

142+
{{< note >}}Client-side caching requires redis-py v5.1.0 or later.
143+
To maximize compatibility with all Redis products, client-side caching
144+
is supported by Redis v7.4 or later.
145+
{{< /note >}}
146+
142147
```python
143148
import redis
144149
from redis.cache import CacheConfig

0 commit comments

Comments
 (0)