Skip to content
Open
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
2 changes: 1 addition & 1 deletion API.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Other supported Redis options:
- `sentinelName` - the name of the sentinel master (when `sentinels` is specified).
- `tls` - an object representing TLS config options for **ioredis**.

The plugin also accepts other `redis` options not mentioned above.
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.


### Usage
Expand Down
33 changes: 29 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
version: '3.0'
services:
redis_basic:
container_name: redis_basic
image: redis:6-alpine
image: redis:8-alpine
ports:
- 6379:6379

redis_with_password:
container_name: redis_with_password
image: redis:6-alpine
image: redis:8-alpine
command: redis-server --requirepass secret
ports:
- 6378:6379

redis_cluster:
container_name: redis_cluster
image: grokzen/redis-cluster:6.2.8
image: grokzen/redis-cluster:7.2.5
environment:
IP: '0.0.0.0'
CLUSTER_ONLY: 'true'
Expand All @@ -26,3 +25,29 @@ services:
- 7003:7003
- 7004:7004
- 7005:7005

dragonfly:
image: docker.dragonflydb.io/dragonflydb/dragonfly
container_name: dragonfly_db
ports:
- "6377:6379"

dragonfly_with_password:
image: docker.dragonflydb.io/dragonflydb/dragonfly
container_name: dragonfly_db_with_password
command: dragonfly --requirepass secret
ports:
- "6376:6379"

valkey:
image: valkey/valkey:8-alpine
container_name: valkey_db
ports:
- "6375:6379"

valkey_with_password:
image: valkey/valkey:8-alpine
container_name: valkey_db_with_password
command: valkey-server --requirepass secret
ports:
- "6374:6379"
Loading
Loading