-
Notifications
You must be signed in to change notification settings - Fork 986
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
Support for ACLs w/ Redis 6 #1083
Comments
Thanks for report. With administrative commands I'm always torn whether it makes sense to add these. Majority of users is going to interact with Redis data structures and the number of use-cases for admin commands is extremely small as a lot of administration happens via |
I have started to implement the new @mp911de Any good pointer about running all tests properly? |
@tgrall - could you also check for RESP 2 vs RESP 3 here too. I see AUTH is implemented for RESP 3 only at the moment with a username. |
There's no good version information that we could use here. Although building against a tag reports the appropriate Redis version (5.0.7), we usually build against version branches ( @tgrall Please file a new ticket for |
Done: #1202 Thanks for the pointer, I will find a way to properly right tests and run them |
Feature Request:
Support for ACLs w/ Redis 6:
In worlds where multiple users exist we may want users to do perform different Redis operations. We may also want to restrict them to specific keys. This will help security-conscious users and enterprises restrict clients and users to the least amount of privilege required to perform their function. With the planned implementation of ACLs in Redis 6, ecosystem drivers should begin aligning to support this.
In Antirez's words:
When ACLs are useful
Commands in Scope Currently w/ Redis 6:
Error Checking
References:
https://redis.io/topics/acl
https://github.com/antirez/redis/blob/0cabe0cfa7290d9b14596ec38e0d0a22df65d1df/src/acl.c
The text was updated successfully, but these errors were encountered: