hiRedis是Redis官方指定的C语言客户端开发包,支持Redis完整的命令集、管线以及事件驱动编程。
示例代码:
redisContext*c=redisConnect("127.0.0.1",6379);if(c->err){ printf("Error:%s\n",c->errstr); //handleerror}reply=redisCommand(context,"SETfoo%s",value);hiRedis是Redis官方指定的C语言客户端开发包,支持Redis完整的命令集、管线以及事件驱动编程。
示例代码:
redisContext*c=redisConnect("127.0.0.1",6379);if(c->err){ printf("Error:%s\n",c->errstr); //handleerror}reply=redisCommand(context,"SETfoo%s",value);
评论