-
Hi , We need to rename some command in Redis due to security reasons. Please let us know how to configure renamed command in Jedis clients. Does Jedis client support rename commands options? |
Beta Was this translation helpful? Give feedback.
Answered by
sazzad16
Jun 24, 2021
Replies: 1 comment 1 reply
-
Jedis does not support command renaming. FYI, Redis has deprecated command renaming.
Source: https://github.com/redis/redis/blob/unstable/redis.conf It is suggested to use ACL to control the access of commands. Jedis supports ACL. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gsuda2001
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Jedis does not support command renaming.
FYI, Redis has deprecated command renaming.
Source: https://github.com/redis/redis/blob/unstable/redis.conf
It is suggested to use ACL to control the access of commands. Jedis supports ACL.