redis举例调用两种方式方式
注:在阅读代码时请留意凝视。
<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
9void doTest()
10 {
11int timeout = 10000;
12struct timeval tv;
13 tv.tv_sec = timeout / 1000;
14 tv.tv_usec = timeout * 1000;
15//以带有超时的方式链接Redisserver。同一时候获取与Redis连接的上下文对象。
//该对象将用于其后全部与Redis操作的函数。
redisContext* c = redisConnectWithTimeout("192.168.149.137",6379,tv);
18if (c->err) {
19 redisFree(c);
20return;
21 }
22constchar* command1 = "setstest1 value1";
23 redisReply* r =(redisReply*)redisCommand(c,command1);
24//须要注意的是。假设返回的对象是NULL。则表示client和server之间出现严重错误,必须又一次链接。
//这里仅仅是举例说明,简便起见,后面的命令就不再做这种推断了。
if (NULL
== r) {
27 redisFree(c);
28return;
29 }
30//不同的Redis命令返回的数据类型不同,在获取之前须要先推断它的实际类型。
//至于各种命令的返回值信息,能够參考Redis的官方文档,或者查看该系列博客的前几篇
//有关Redis各种数据类型的博客。
//字符串类型的set命令的返回值的类型是REDIS_REPLY_STATUS,然后仅仅有当返回信息是"OK"
//时,才表示该命令运行成功。后面的样例以此类推,就不再过多赘述了。
if (!(r->type
== REDIS_REPLY_STATUS &&strcasecmp(r->str,"OK") == 0)) {
36 printf("Failedto execute command[%s].\n",command1);
37 freeReplyObject(r);
38 redisFree(c);
39return;
40 }
41//因为后面反复使用该变量。所以须要提前释放,否则内存泄漏。
freeReplyObject(r);
43 printf("Succeedto execute command[%s].\n",command1);
44
45constchar* command2 = "strlenstest1";
46 r = (redisReply*)redisCommand(c,command2);
47if (r->type != REDIS_REPLY_INTEGER) {
48 printf("Failedto execute command[%s].\n",command2);
49 freeReplyObject(r);
50 redisFree(c);
51return;
52 }
53int length = r->integer;
54 freeReplyObject(r);
55 printf("Thelength of 'stest1' is %d.\n",length);
56 printf("Succeedto execute command[%s].\n",command2);
57
58constchar* command3 = "getstest1";
59 r = (redisReply*)redisCommand(c,command3);
60if (r->type != REDIS_REPLY_STRING) {
61 printf("Failedto execute command[%s].\n",command3);
62 freeReplyObject(r);
63 redisFree(c);
64return;
65 }
66 printf("Thevalue of 'stest1' is %s.\n",r->str);
67 freeReplyObject(r);
68 printf("Succeedto execute command[%s].\n",command3);
69
70constchar* command4 = "getstest2";
71 r = (redisReply*)redisCommand(c,command4);
72//这里须要先说明一下,因为stest2键并不存在。因此Redis会返回空结果,这里仅仅是为了演示。
if (r->type
!= REDIS_REPLY_NIL) {
74 printf("Failedto execute command[%s].\n",command4);
75 freeReplyObject(r);
76 redisFree(c);
77return;
78 }
79 freeReplyObject(r);
80 printf("Succeedto execute command[%s].\n",command4);
81
82constchar* command5 = "mgetstest1 stest2";
83 r = (redisReply*)redisCommand(c,command5);
84//不论stest2存在与否,Redis都会给出结果。仅仅是第二个值为nil。
//由于有多个值返回,由于返回应答的类型是数组类型。
if (r->type
!= REDIS_REPLY_ARRAY) {
87 printf("Failedto execute command[%s].\n",command5);
88 freeReplyObject(r);
89 redisFree(c);
90//r->elements表示子元素的数量,无论请求的key是否存在,该值都等于请求是键的数量。
assert(2== r->elements);
92return;
93 }
94for (int i = 0; i < r->elements; ++i) {
95 redisReply* childReply =r->element;
96//之前已经介绍过。get命令返回的数据类型是string。
//对于不存在key的返回值。其类型为REDIS_REPLY_NIL。
if (childReply->type
== REDIS_REPLY_STRING)
99 printf("Thevalue is %s.\n",childReply->str);
100 }
101//对于每个子应答。无需使用者单独释放,仅仅需释放最外部的redisReply就可以。
freeReplyObject(r);
103 printf("Succeed to executecommand[%s].\n",command5);
104
105 printf("Begin to test pipeline.\n");
106//该命令仅仅是将待发送的命令写入到上下文对象的输出缓冲区中。直到调用后面的
//redisGetReply命令才会批量将缓冲区中的命令写出到Redisserver。这样能够
//有效的降低client与server之间的同步等候时间。以及网络IO引起的延迟。
//至于管线的详细性能优势。能够考虑该系列博客中的管线主题。
if (REDIS_OK!=
redisAppendCommand(c,command1)
111 || REDIS_OK != redisAppendCommand(c,command2)
112 || REDIS_OK != redisAppendCommand(c,command3)
113 || REDIS_OK != redisAppendCommand(c,command4)
114 || REDIS_OK != redisAppendCommand(c,command5)) {
115 redisFree(c);
116return;
117 }
118
119 redisReply* reply = NULL;
120//对pipeline返回结果的处理方式,和前面代码的处理方式全然一直,这里就不再反复给出了。
if (REDIS_OK!=
redisGetReply(c,(void**)&reply)) {
122 printf("Failed to execute command[%s]with Pipeline.\n",command1);
123 freeReplyObject(reply);
124 redisFree(c);
125 }
126 freeReplyObject(reply);
127 printf("Succeed to execute command[%s]with Pipeline.\n",command1);
128
129if (REDIS_OK!= redisGetReply(c,(void**)&reply)) {
130 printf("Failed to execute command[%s]with Pipeline.\n",command2);
131 freeReplyObject(reply);
132 redisFree(c);
133 }
134 freeReplyObject(reply);
135 printf("Succeed to execute command[%s]with Pipeline.\n",command2);
136
137if (REDIS_OK!= redisGetReply(c,(void**)&reply)) {
138 printf("Failed to execute command[%s]with Pipeline.\n",command3);
139 freeReplyObject(reply);
140 redisFree(c);
141 }
142 freeReplyObject(reply);
143 printf("Succeed to execute command[%s]with Pipeline.\n",command3);
144
145if (REDIS_OK!= redisGetReply(c,(void**)&reply)) {
146 printf("Failed to execute command[%s]with Pipeline.\n",command4);
147 freeReplyObject(reply);
148 redisFree(c);
149 }
150 freeReplyObject(reply);
151 printf("Succeedto execute command[%s] with Pipeline.\n",command4);
152
153if (REDIS_OK!= redisGetReply(c,(void**)&reply)) {
154 printf("Failed to execute command[%s]with Pipeline.\n",command5);
155 freeReplyObject(reply);
156 redisFree(c);
157 }
158 freeReplyObject(reply);
159 printf("Succeed to execute command[%s]with Pipeline.\n",command5);
160//因为全部通过pipeline提交的命令结果均已为返回,假设此时继续调用redisGetReply。
//将会导致该函数堵塞并挂起当前线程,直到有新的通过管线提交的命令结果返回。
//最后不要忘记在退出前释放当前连接的上下文对象。
redisFree(c);
164return;
165 }
166
167int main()
168 {
169 doTest();
170return0;
171 }
172
173//输出结果例如以下:
//Succeed
to execute command[set stest1value1].
//The
length of 'stest1' is 6.
//Succeed
to execute command[strlen stest1].
//The
value of 'stest1' is value1.
//Succeed
to execute command[get stest1].
//Succeed
to execute command[get stest2].
//The
value is value1.
//Succeed
to execute command[mget stest1 stest2].
//Begin
to test pipeline.
//Succeed
to execute command[set stest1 value1] withPipeline.
//Succeed
to execute command[strlen stest1] withPipeline.
//Succeed
to execute command[get stest1] with Pipeline.
//Succeed
to execute command[get stest2] with Pipeline.
//Succeed
to execute command[mget stest1 stest2] withPipeline.
版权声明:本文博主原创文章。博客,未经同意不得转载。
redis举例调用两种方式方式的更多相关文章
- Redis两种持久化方式(RDB&AOF)
爬虫和转载请注明原文地址;博客园蜗牛:http://www.cnblogs.com/tdws/p/5754706.html Redis所需内存 超过可用内存怎么办 Redis修改数据多线程并发—Red ...
- Redis持久化的两种方式(RDB和AOF)
redis提供了两种持久化的方式,分别是RDB(Redis DataBase)和AOF(Append Only File). RDB,简而言之,就是在不同的时间点,将redis存储的数据生成快照并存储 ...
- redis的两种备份方式
Redis提供了两种持久化选项,分别是RDB和AOF. 默认情况下60秒刷新到disk一次[save 60 10000 当有1w条keys数据被改变时],Redis的数据集保存在叫dump.rdb一个 ...
- Redis的两种持久化方式详细介绍
一,Redis是一款基于内存的数据库,可以持久化,在企业中常用于缓存,相信大家都比较熟悉Redis了,下面主要分享下关于Redis持久化的两种模式 1.半持久化模式(RDB,filesnapshott ...
- Redis持久化的两种方式和区别
该文转载自:http://www.cnblogs.com/swyi/p/6093763.html Redis持久化的两种方式和区别 Redis是一种高级key-value数据库.它跟memcached ...
- redis持久化的两种方式
redis是一个内存型数据库.当redis服务器重启时,数据会丢失.我们可以将redis内存中的数据持久化保存到硬盘的文件中. redis持久化有两种机制.RDB与AOF.默认方式是RDB. 1.RD ...
- redis笔记之两种持久化备份方式(RDB & AOF)
Redis支持的两种持久化备份方式(RDB & AOF) redis支持两种持久化方式,一种是RDB,一种是AOF. RDB是根据指定的规则定时将内存中的数据备份到硬盘上,AOF是在每次执行命 ...
- 探究Redis两种持久化方式下的数据恢复
对长期奋战在一线的后端开发人员来说,都知道redis有两种持久化方式RDB和AOF,虽说大家都知道这两种方式大概运作方式,但想必有实操的人不会太多. 这里是自己实操两种持久化方式的一点点记录. 先看以 ...
- String基础: String两种创建对象方式的比较
字符串常量 在一般的语言中常量一旦声明则不可改变,在java中的字符串常量是以匿名对象来表示的 javaz中字符串两种定义方法: String strA= new String("hello ...
随机推荐
- SpringMVC学习总结(2)——SpringMVC返回json配置
<!-- 避免IE执行AJAX时,返回JSON出现下载文件 --> <bean id="mappingJacksonHttpMessageConverter" c ...
- echarts3.0 仪表盘实例更改完成占用率实例
需要完成的项目效果 官方实例效果 基本思路: 首先引入jquery和echarts3.0库. 需要两个仪表盘,一个仪表盘是纯色灰色,在底部.startAngle 和endAngle永远是最大值,默认为 ...
- POJ 3061 Subsequence 二分或者尺取法
http://poj.org/problem?id=3061 题目大意: 给定长度为n的整列整数a[0],a[1],--a[n-1],以及整数S,求出总和不小于S的连续子序列的长度的最小值. 思路: ...
- 最新GitHub账号注册(详细图解)
说明:该篇博客是博主一字一码编写的,实属不易,请尊重原创,谢谢大家! 一.简介 GitHub是一个面向开源及私有软件项目的托管平台,因为只支持git 作为唯一的版本库格式进行托管,故名gitHub. ...
- 杭州"人才新政22条" 硕士来杭工作一次性补贴2万元
转载自原文杭州"人才新政22条" 硕士来杭工作一次性补贴2万元 2016-11-8 继去年1月推出“人才新政27条”后,杭州在引才上又将有新动作.在昨天举行的2016浙江·杭州国际 ...
- [React] Style a React component with styled-components
In this lesson, we remove the mapping between a React component and the styles applied to it via cla ...
- [Angular] Implementing A General Communication Mechanism For Directive Interaction
We have modal implement and now we want to implement close functionality. Becuase we use a structure ...
- [NIO]用dawn发送接收HTTP请求
HTTP协议的下层使用的是tcp.所以我们建立一个tcp连接就能发送接收http请求.dawn底层使用了nio.可是经过dawn的封装之后,我们在编写代码的时候,就和使用普通的堵塞式socket一样 ...
- Android自定义组件系列【8】——遮罩文字动画
遮罩文字的动画我们在Flash中非常常见,作为Android的应用开发者你是否也想将这种动画做到你的应用中去呢?这一篇文章我们来看看如何自定义一个ImageView来实现让一张文字图片实现文字的遮罩闪 ...
- bc-win32-power-echo-vim-not-work
http://gnuwin32.sourceforge.net/packages.html linux ok, but win32 not ok [root@130-255-8-100 ~]# ech ...