在C++中使用Hiredis库连接Redis服务器的步骤如下:
#include <hiredis/hiredis.h>
redisContext *context = redisConnect("127.0.0.1", 6379);
if (context == NULL || context->err) {
if (context) {
printf("Error: %s\n", context->errstr);
redisFree(context);
} else {
printf("Cannot allocate redis context\n");
}
return -1;
}
这里将连接到本地Redis服务器,如果连接失败,会输出错误信息并返回-1。
redisReply *reply = (redisReply *)redisCommand(context, "SET key value");
if (reply == NULL) {
printf("Error executing command\n");
return -1;
}
printf("Command executed successfully\n");
freeReplyObject(reply);
这里执行了一个SET操作,将key设置为value。
redisFree(context);
这样就完成了通过Hiredis库连接到Redis服务器并执行命令的过程。在实际使用中,你可以根据需要执行其他操作,如GET、DEL等。