标签:
/* 作用:用于连接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;
标签:
原文地址:http://www.cnblogs.com/desort/p/4548333.html