在C++中使用Hiredis库连接Redis服务器的步骤如下:
首先,需要在项目中包含Hiredis库的头文件。你可以从Hiredis的GitHub仓库中下载最新版本的Hiredis并将其包含在项目中:#include <hiredis/hiredis.h>创建一个Redis连接对象,并连接到Redis服务器: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。
执行Redis命令: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等。


