Skip to content
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

Added support for redis clustered mode #735

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
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
Prev Previous commit
Next Next commit
added mode in redis profile
Signed-off-by: munishchouhan <hrma017@gmail.com>
munishchouhan committed Nov 6, 2024
commit 31640e4e7957e82804784494545385fc2cce1587
4 changes: 3 additions & 1 deletion src/main/resources/application-redis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
redis:
uri: redis://${REDIS_HOST:redis}:${REDIS_PORT:6379}
uri: redis://${REDIS_HOST:localhost}:${REDIS_PORT:6379}
mode: "standalone"
pool:
enabled: true

...