C++中訪問(wèn)redis,用hiredis接口可以指定密碼嗎
1 回答

守候你守候我
TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超10個(gè)贊
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | redisContext *c = redisConnect("hostname", port);if (c != NULL && c->err) { printf("Error: %s\n", c->errstr); // handle error } else { printf("Connected to Redis\n"); }
redisReply *reply; reply = redisCommand(c, "AUTH password"); freeReplyObject(reply);
...
redisFree(c); |
hiredis可以連接設(shè)置了密碼的redis服務(wù)器,但是不是在連接時(shí)指定,而是在連接成功后,通過(guò)發(fā)送`AUTH`命令來(lái)指定密碼。如上述代碼所示。
- 1 回答
- 0 關(guān)注
- 563 瀏覽
添加回答
舉報(bào)
0/150
提交
取消