概述
2019独角兽企业重金招聘Python工程师标准>>>
在使用Redis客户端hiredis处理redis的命令时,当key或者value中包括空格时,遇到命令执行失败的问题。
具体情况如下:
#include <hiredis/hiredis.h>
int main(int argc, char const *argv[])
{
redisContext *c = redisConnect("127.0.0.1", 6379);
if (c != NULL && c->err) {
printf("Error: %sn", c->errstr);
}
redisReply *reply;
// 执行命令: SET foo "bar bar"
// 直接使用字符串拼接会执行错误
reply = redisCommand(c, "SET foo "bar bar"");
if (reply->type == REDIS_REPLY_ERROR) {
printf("Error - 1: %sn", reply->str);
}
// 通过%s代替后可以正确执行
reply = redisCommand(c, "SET foo %s", "bar bar");
if (reply->type == REDIS_REPLY_ERROR) {
printf("Error - 2: %sn", reply->str);
}
return 0;
}
程序的执行结果如下:
roo@roose:~/myredis$ cc hitest.c -lhiredis
roo@roose:~/myredis$ ./a.out
Error - 1: ERR syntax error
转载于:https://my.oschina.net/u/1049845/blog/376168
最后
以上就是香蕉酸奶为你收集整理的使用Redis客户端hiredis遇到的一些问题的全部内容,希望文章能够帮你解决使用Redis客户端hiredis遇到的一些问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复