叮当猫咪
1234567891011121314redisContext *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可以连接设置了密码的redis服务器,但是不是在连接时指定,而是在连接成功后,通过发送`AUTH`命令来指定密码。如上述代码所示。