How to set password please ? #53
Answered
by
ra1u
sunjianan9900
asked this question in
Q&A
Replies: 1 comment 6 replies
|
Hello. I guess you want to authenticate against redis server over secure connection https://redis.io/commands/auth final conn = RedisConnection();
Command command = await conn.connectSecure('host',port);
var rsp = await command.send_object(["AUTH",username,pazzword]);
print(rsp);Let me know if that is what you are looking for. Kind, regards Luka |
6 replies
Answer selected by
sunjianan9900
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello. I guess you want to authenticate against redis server over secure connection
https://redis.io/commands/auth
Let me know if that is what you are looking for.
Kind, regards Luka