We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Redis 6.0 add username as an optional parameters
https://redis.io/commands/auth
The text was updated successfully, but these errors were encountered:
lua-resty-redis is supported auth [user] password command, just pass two parameters.
auth [user] password
like this:
red:auth("user", "password")
example:
local res, err = red:auth("test", "123456") if err then ngx.say("failed to auth: ", err) return end ngx.say(res)
Sorry, something went wrong.
No branches or pull requests
Redis 6.0 add username as an optional parameters
https://redis.io/commands/auth
The text was updated successfully, but these errors were encountered: