码迷,mamicode.com
首页 > 其他好文 > 详细

hiredis 结构

时间:2015-06-03 11:20:54      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:


 /*
作用:用于连接redis服务器
 ip : 为redis的ip地址;
 port: 端口地址;
 tv:连接超时的参数;
*/
 redisContext *redisConnectWithTimeout(const char *ip, int port, struct timeval tv);
技术分享

 

技术分享
/*
作用:执行命令
c:redisConnectWitTimeout返回的对象;
format:命令参数;
*/

void *redisCommand(redisContext *c, const char *format, ...)
技术分享











/* 说明:redisCommand返回的对象指针,也就是已经命令返回的结果数据 */ typedef struct redisReply { int type; /* REDIS_REPLY_* */ long long integer; /* The integer when type is REDIS_REPLY_INTEGER */ int len; /* Length of string */ char *str; /* Used for both REDIS_REPLY_ERROR and REDIS_REPLY_STRING */ size_t elements; /* number of elements, for REDIS_REPLY_ARRAY */ struct redisReply **element; /* elements vector for REDIS_REPLY_ARRAY */ } redisReply;



hiredis 结构

标签:

原文地址:http://www.cnblogs.com/desort/p/4548333.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!