This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Replies: 1 comment 1 reply
-
Added PR here can you take a look - #3847 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the current version of Orkes, the Redis configuration only allows for password-based authentication. However, starting from Redis version 6.0.0, support for ACL (Access Control List) with both username and password was introduced. Can we consider adding username support to the configuration?
In addition to this, currently in the configuration the code connects to the default database ID(0). Can we have this configurable as well?
Describe the solution you'd like
Jedis library already has support for username and password-based configuration. We can wire the username in the properties and default it to null if the username is not configured. The same thing can be done for database id as well.
I can create the PR, if I get the approval for this issue.
Beta Was this translation helpful? Give feedback.
All reactions