Skip to content

Commit b945a4c

Browse files
committed
chore: 🤖 test with latest redis and redis drop-ins
1 parent c78198d commit b945a4c

File tree

3 files changed

+592
-522
lines changed

3 files changed

+592
-522
lines changed

‎API.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Other supported Redis options:
3131
- `sentinelName` - the name of the sentinel master (when `sentinels` is specified).
3232
- `tls` - an object representing TLS config options for **ioredis**.
3333

34-
The plugin also accepts other `redis` options not mentioned above.
34+
The plugin also accepts other `redis` options not mentioned above. It should work with `redis`, `dragonflydb`, and `valkey`— any Redis-compatible datastores should work with this plugin.
3535

3636

3737
### Usage

‎docker-compose.yml‎

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
1-
version: '3.0'
21
services:
32
redis_basic:
43
container_name: redis_basic
5-
image: redis:6-alpine
4+
image: redis:8-alpine
65
ports:
76
- 6379:6379
87

98
redis_with_password:
109
container_name: redis_with_password
11-
image: redis:6-alpine
10+
image: redis:8-alpine
1211
command: redis-server --requirepass secret
1312
ports:
1413
- 6378:6379
1514

1615
redis_cluster:
1716
container_name: redis_cluster
18-
image: grokzen/redis-cluster:6.2.8
17+
image: grokzen/redis-cluster:7.2.5
1918
environment:
2019
IP: '0.0.0.0'
2120
CLUSTER_ONLY: 'true'
@@ -26,3 +25,29 @@ services:
2625
- 7003:7003
2726
- 7004:7004
2827
- 7005:7005
28+
29+
dragonfly:
30+
image: docker.dragonflydb.io/dragonflydb/dragonfly
31+
container_name: dragonfly_db
32+
ports:
33+
- "6377:6379"
34+
35+
dragonfly_with_password:
36+
image: docker.dragonflydb.io/dragonflydb/dragonfly
37+
container_name: dragonfly_db_with_password
38+
command: dragonfly --requirepass secret
39+
ports:
40+
- "6376:6379"
41+
42+
valkey:
43+
image: valkey/valkey:8-alpine
44+
container_name: valkey_db
45+
ports:
46+
- "6375:6379"
47+
48+
valkey_with_password:
49+
image: valkey/valkey:8-alpine
50+
container_name: valkey_db_with_password
51+
command: valkey-server --requirepass secret
52+
ports:
53+
- "6374:6379"

0 commit comments

Comments
 (0)