c++使用redis
hredishttps://www.csdn.net/gather_2f/MtTaEgwsMTUwLWJsb2cO0O0O.html然后,就可以基于hiredis API开发客户端了。可是hiredis不支持集群。支持集群的API:C++ https://github.com/eyjian/r3cC++ https://github.com/zhengshuxin/aclhttps://githu
hredis
https://www.csdn.net/gather_2f/MtTaEgwsMTUwLWJsb2cO0O0O.html
然后,就可以基于hiredis API开发客户端了。可是hiredis不支持集群。支持集群的API:
C++ https://github.com/eyjian/r3c
C++ https://github.com/zhengshuxin/acl
https://github.com/zhengshuxin/acl/tree/master/lib_acl_cpp/samples/redis
C https://github.com/vipshop/hiredis-vip.git
hiredis-vip:
#include<stdio.h>
#include<hircluster.h>
int main()
{
redisClusterContext *cc = redisClusterConnect("127.0.0.1:7000,127.0.0.1:7001",HIRCLUSTER_FLAG_NULL);
if(cc == NULL || cc->err)
{
printf("connect error : %s\n", cc == NULL ? "NULL" : cc->errstr);
return -1;
}
int i;
redisReply* reply = NULL;
for(i=0; i<10000; i++)
{
//set
reply = redisClusterCommand(cc, "set key%d value%d", i, i);
if(reply == NULL)
{
printf("set key%d, reply is NULL, error info: %s\n", i, cc->errstr);
redisClusterFree(cc);
return -1;
}
printf("set key%d, reply:%s\n", i, reply->str);
freeReplyObject(reply);
//get
reply = redisClusterCommand(cc, "get key%d", i);
if(reply == NULL)
{
printf("get key%d, reply is NULL, error info: %s\n", i, cc->errstr);
redisClusterFree(cc);
return -1;
}
printf("get key%d, reply:%s\n", i, reply->str);
freeReplyObject(reply);
}
redisClusterFree(cc);
return 0;
}
RedisConnect
https://blog.csdn.net/xungen/article/details/90645981
分享一个开源的Redis连接库RedisConnect,官方地址:https://www.winfengtech.com/redisconnect
介绍
1、RedisConnect是基于C++11实现的简单易用的Redis客户端。
2、源码只包含一个头文件与一个命令行工具源文件,无需编译安装,真正做到零依赖。
3、自带连接池功能,调用Setup方法初始化连接池,然后执行Instance方法就可以获取一个连接。
4、RedisConnect包装了常用的redis命令,对于未包装的命令你可以使用可变参模板方法(execute)进行调用。
安装方法
1、下载源码
git clone https://gitee.com/xungen/redisconnect.git
更多推荐
所有评论(0)