Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(redis) add support for username/password auth
lua-resty-redis supports username/password authentication: ``` local res, err = red:auth("userexample", "passexample") if not res then ngx.say("failed to authenticate: ", err) return end ```
- Loading branch information