首页 > 数据库 > Redis > 正文

Redis教程(十五):C语言连接操作代码实例

2020-03-17 12:42:36
字体:
来源:转载
供稿:网友

这篇文章主要介绍了Redis教程(十五):C语言连接操作代码实例,本篇博客是该系列博客中的最后一篇,在这里将给出基于Redis客户端组件访问并操作Redis服务器的代码示例,需要的朋友可以参考下

在之前的博客中已经非常详细的介绍了Redis的各种操作命令、运行机制和服务器初始化参数配置。本篇博客是该系列博客中的最后一篇,在这里将给出基于Redis客户端组件访问并操作Redis服务器的代码示例。然而需要说明的是,由于Redis官方并未提供基于C接口的Windows平台客户端,因此下面的示例仅可运行于Linux/Unix平台。但是对于使用其它编程语言的开发者而言,如C#和Java,Redis则提供了针对这些语言的客户端组件,通过该方式,同样可以达到基于Windows平台与Redis服务器进行各种交互的目的。

该篇博客中使用的客户端来自于Redis官方网站,是Redis推荐的基于C接口的客户端组件,见如下链接:

https://github.com/antirez/hiredis

在下面的代码示例中,将给出两种最为常用的Redis命令操作方式,既普通调用方式和基于管线的调用方式。

注:在阅读代码时请留意注释。

 

 
  1. #include <stdio.h> 
  2. #include <stdlib.h> 
  3. #include <stddef.h> 
  4. #include <stdarg.h> 
  5. #include <string.h> 
  6. #include <assert.h> 
  7. #include <hiredis.h> 
  8.  
  9. void doTest() 
  10. int timeout = 10000; 
  11. struct timeval tv; 
  12. tv.tv_sec = timeout / 1000; 
  13. tv.tv_usec = timeout * 1000; 
  14. //以带有超时的方式链接Redis服务器,同时获取与Redis连接的上下文对象。 
  15. //该对象将用于其后所有与Redis操作的函数。 
  16. redisContext* c = redisConnectWithTimeout("192.168.149.137",6379,tv); 
  17. if (c->err) { 
  18. redisFree(c); 
  19. return; 
  20. const char* command1 = "set stest1 value1"; 
  21. redisReply* r = (redisReply*)redisCommand(c,command1); 
  22. //需要注意的是,如果返回的对象是NULL,则表示客户端和服务器之间出现严重错误,必须重新链接。 
  23. //这里只是举例说明,简便起见,后面的命令就不再做这样的判断了。 
  24. if (NULL == r) { 
  25. redisFree(c); 
  26. return; 
  27. //不同的Redis命令返回的数据类型不同,在获取之前需要先判断它的实际类型。 
  28. //至于各种命令的返回值信息,可以参考Redis的官方文档,或者查看该系列博客的前几篇 
  29. //有关Redis各种数据类型的博客。:) 
  30. //字符串类型的set命令的返回值的类型是REDIS_REPLY_STATUS,然后只有当返回信息是"OK" 
  31. //时,才表示该命令执行成功。后面的例子以此类推,就不再过多赘述了。 
  32. if (!(r->type == REDIS_REPLY_STATUS && strcasecmp(r->str,"OK") == 0)) { 
  33. printf("Failed to execute command[%s]./n",command1); 
  34. freeReplyObject(r); 
  35. redisFree(c); 
  36. return; 
  37. //由于后面重复使用该变量,所以需要提前释放,否则内存泄漏。 
  38. freeReplyObject(r); 
  39. printf("Succeed to execute command[%s]./n",command1); 
  40.  
  41. const char* command2 = "strlen stest1"; 
  42. r = (redisReply*)redisCommand(c,command2); 
  43. if (r->type != REDIS_REPLY_INTEGER) { 
  44. printf("Failed to execute command[%s]./n",command2); 
  45. freeReplyObject(r); 
  46. redisFree(c); 
  47. return; 
  48. int length = r->integer; 
  49. freeReplyObject(r); 
  50. printf("The length of 'stest1' is %d./n",length); 
  51. printf("Succeed to execute command[%s]./n",command2); 
  52.  
  53. const char* command3 = "get stest1"; 
  54. r = (redisReply*)redisCommand(c,command3); 
  55. if (r->type != REDIS_REPLY_STRING) { 
  56. printf("Failed to execute command[%s]./n",command3); 
  57. freeReplyObject(r); 
  58. redisFree(c); 
  59. return; 
  60. printf("The value of 'stest1' is %s./n",r->str); 
  61. freeReplyObject(r); 
  62. printf("Succeed to execute command[%s]./n",command3); 
  63.  
  64. const char* command4 = "get stest2"; 
  65. r = (redisReply*)redisCommand(c,command4); 
  66. //这里需要先说明一下,由于stest2键并不存在,因此Redis会返回空结果,这里只是为了演示。 
  67. if (r->type != REDIS_REPLY_NIL) { 
  68. printf("Failed to execute command[%s]./n",command4); 
  69. freeReplyObject(r); 
  70. redisFree(c); 
  71. return; 
  72. freeReplyObject(r); 
  73. printf("Succeed to execute command[%s]./n",command4); 
  74.  
  75. const char* command5 = "mget stest1 stest2"; 
  76. r = (redisReply*)redisCommand(c,command5); 
  77. //不论stest2存在与否,Redis都会给出结果,只是第二个值为nil。 
  78. //由于有多个值返回,因为返回应答的类型是数组类型。 
  79. if (r->type != REDIS_REPLY_ARRAY) { 
  80. printf("Failed to execute command[%s]./n",command5); 
  81. freeReplyObject(r); 
  82. redisFree(c); 
  83. //r->elements表示子元素的数量,不管请求的key是否存在,该值都等于请求是键的数量。 
  84. assert(2 == r->elements); 
  85. return; 
  86. for (int i = 0; i < r->elements; ++i) { 
  87. redisReply* childReply = r->element[i]; 
  88. //之前已经介绍过,get命令返回的数据类型是string。 
  89. //对于不存在key的返回值,其类型为REDIS_REPLY_NIL。 
  90. if (childReply->type == REDIS_REPLY_STRING) 
  91. printf("The value is %s./n",childReply->str); 
  92. //对于每一个子应答,无需使用者单独释放,只需释放最外部的redisReply即可。 
  93. freeReplyObject(r); 
  94. printf("Succeed to execute command[%s]./n",command5); 
  95.  
  96. printf("Begin to test pipeline./n"); 
  97. //该命令只是将待发送的命令写入到上下文对象的输出缓冲区中,直到调用后面的 
  98. //redisGetReply命令才会批量将缓冲区中的命令写出到Redis服务器。这样可以 
  99. //有效的减少客户端与服务器之间的同步等候时间,以及网络IO引起的延迟。 
  100. //至于管线的具体性能优势,可以考虑该系列博客中的管线主题。 
  101. if (REDIS_OK != redisAppendCommand(c,command1) 
  102. || REDIS_OK != redisAppendCommand(c,command2) 
  103. || REDIS_OK != redisAppendCommand(c,command3) 
  104. || REDIS_OK != redisAppendCommand(c,command4) 
  105. || REDIS_OK != redisAppendCommand(c,command5)) { 
  106. redisFree(c); 
  107. return; 
  108.  
  109. redisReply* reply = NULL; 
  110. //对pipeline返回结果的处理方式,和前面代码的处理方式完全一直,这里就不再重复给出了。 
  111. if (REDIS_OK != redisGetReply(c,(void**)&reply)) { 
  112. printf("Failed to execute command[%s] with Pipeline./n",command1); 
  113. freeReplyObject(reply); 
  114. redisFree(c); 
  115. freeReplyObject(reply); 
  116. printf("Succeed to execute command[%s] with Pipeline./n",command1); 
  117.  
  118. if (REDIS_OK != redisGetReply(c,(void**)&reply)) { 
  119. printf("Failed to execute command[%s] with Pipeline./n",command2); 
  120. freeReplyObject(reply); 
  121. redisFree(c); 
  122. freeReplyObject(reply); 
  123. printf("Succeed to execute command[%s] with Pipeline./n",command2); 
  124.  
  125. if (REDIS_OK != redisGetReply(c,(void**)&reply)) { 
  126. printf("Failed to execute command[%s] with Pipeline./n",command3); 
  127. freeReplyObject(reply); 
  128. redisFree(c); 
  129. freeReplyObject(reply); 
  130. printf("Succeed to execute command[%s] with Pipeline./n",command3); 
  131.  
  132. if (REDIS_OK != redisGetReply(c,(void**)&reply)) { 
  133. printf("Failed to execute command[%s] with Pipeline./n",command4); 
  134. freeReplyObject(reply); 
  135. redisFree(c); 
  136. freeReplyObject(reply); 
  137. printf("Succeed to execute command[%s] with Pipeline./n",command4); 
  138.  
  139. if (REDIS_OK != redisGetReply(c,(void**)&reply)) { 
  140. printf("Failed to execute command[%s] with Pipeline./n",command5); 
  141. freeReplyObject(reply); 
  142. redisFree(c); 
  143. freeReplyObject(reply); 
  144. printf("Succeed to execute command[%s] with Pipeline./n",command5); 
  145. //由于所有通过pipeline提交的命令结果均已为返回,如果此时继续调用redisGetReply, 
  146. //将会导致该函数阻塞并挂起当前线程,直到有新的通过管线提交的命令结果返回。 
  147. //最后不要忘记在退出前释放当前连接的上下文对象。 
  148. redisFree(c); 
  149. return; 
  150.  
  151. int main()  
  152. doTest(); 
  153. return 0; 
  154.  
  155. //输出结果如下: 
  156. //Succeed to execute command[set stest1 value1]. 
  157. //The length of 'stest1' is 6. 
  158. //Succeed to execute command[strlen stest1]. 
  159. //The value of 'stest1' is value1. 
  160. //Succeed to execute command[get stest1]. 
  161. //Succeed to execute command[get stest2]. 
  162. //The value is value1. 
  163. //Succeed to execute command[mget stest1 stest2]. 
  164. //Begin to test pipeline. 
  165. //Succeed to execute command[set stest1 value1] with Pipeline. 
  166. //Succeed to execute command[strlen stest1] with Pipeline. 
  167. //Succeed to execute command[get stest1] with Pipeline. 
  168. //Succeed to execute command[get stest2] with Pipeline. 
  169. //Succeed to execute command[mget stest1 stest2] with Pipeline. 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表