Redis C++编程实例

基本功能步骤:

1,下载安装Redis,下载地址:http://www.redis.cn/download.html。

2,下载安装hiredis,下载地址:https://github.com/redis/hiredis。

将libhiredis.so放到/usr/lib/目录下。

3,在hiredis-master目录下编写客户端程序。

[cpp] view plain copy

  1. #include <stdio.h>
  2. #include "hiredis.h"
  3. int main()
  4. {
  5. redisContext *conn  = redisConnect("127.0.0.1",6379);
  6. if(conn != NULL && conn->err)
  7. {
  8. printf("connection error: %s\n",conn->errstr);
  9. return 0;
  10. }
  11. redisReply *reply = (redisReply*)redisCommand(conn,"set foo 1234");
  12. freeReplyObject(reply);
  13. reply = redisCommand(conn,"get foo");
  14. printf("%s\n",reply->str);
  15. freeReplyObject(reply);
  16. redisFree(conn);
  17. return 0;
  18. }

编译命令:gcc -o redistest redistest.c -lhiredis

4,启动服务器,运行客户端程序。

Redis pub/sub功能实现。

发布pub功能:

[cpp] view plain copy

  1. #include <stdio.h>
  2. #include <sys/time.h>
  3. #include "hiredis.h"
  4. int main()
  5. {
  6. struct timeval begin;
  7. redisContext *conn  = redisConnect("127.0.0.1",6379);
  8. if(conn != NULL && conn->err)
  9. {
  10. printf("connection error: %s\n",conn->errstr);
  11. return 0;
  12. }
  13. gettimeofday(&begin, NULL);
  14. redisReply *reply = (redisReply*)redisCommand(conn,"publish foo 1234");
  15. int sec, usec;
  16. sec = begin.tv_sec;
  17. usec = begin.tv_usec;
  18. printf("%d\t%d\n", sec, usec);
  19. freeReplyObject(reply);
  20. reply = redisCommand(conn,"get foo");
  21. printf("%s\n",reply->str);
  22. freeReplyObject(reply);
  23. redisFree(conn);
  24. return 0;
  25. }

订阅sub功能:

[cpp] view plain copy

  1. #include <sys/time.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <signal.h>
  6. #include "hiredis.h"
  7. #include "async.h"
  8. #include "adapters/libevent.h"
  9. void subCallback(redisAsyncContext *c, void *r, void *priv) {
  10. struct timeval end;
  11. int sec, usec;
  12. redisReply *reply = r;
  13. if (reply == NULL) return;
  14. if ( reply->type == REDIS_REPLY_ARRAY && reply->elements == 3 ) {
  15. if ( strcmp( reply->element[0]->str, "subscribe" ) != 0 ) {
  16. gettimeofday(&end,NULL);
  17. sec = end.tv_sec;
  18. usec = end.tv_usec;
  19. printf("%d\t%d\n", sec, usec);
  20. printf( "Received[%s] channel %s: %s\n",
  21. (char*)priv,
  22. reply->element[1]->str,
  23. reply->element[2]->str );
  24. }
  25. }
  26. }
  27. void connectCallback(const redisAsyncContext *c, int status) {
  28. if (status != REDIS_OK) {
  29. printf("Error: %s\n", c->errstr);
  30. return;
  31. }
  32. printf("Connected...\n");
  33. }
  34. void disconnectCallback(const redisAsyncContext *c, int status) {
  35. if (status != REDIS_OK) {
  36. printf("Error: %s\n", c->errstr);
  37. return;
  38. }
  39. printf("Disconnected...\n");
  40. }
  41. int main (int argc, char **argv) {
  42. signal(SIGPIPE, SIG_IGN);
  43. struct event_base *base = event_base_new();
  44. redisAsyncContext *c = redisAsyncConnect("127.0.0.1", 6379);
  45. if (c->err) {
  46. /* Let *c leak for now... */
  47. printf("Error: %s\n", c->errstr);
  48. return 1;
  49. }
  50. redisLibeventAttach(c,base);
  51. redisAsyncSetConnectCallback(c,connectCallback);
  52. redisAsyncSetDisconnectCallback(c,disconnectCallback);
  53. redisAsyncCommand(c, subCallback, (char*) "sub", "SUBSCRIBE foo");
  54. event_base_dispatch(base);
  55. return 0;
  56. }

pub编译命令同上,sub编译命令:gcc -o sub sub.c -lhiredis -levent

注意:

1,编译基本程序时可能需要建立链接:ln -s libhiredis.so libhiredis.so.0.12

2,1,订阅sub需要安装libevent-dev。

时间: 2024-10-12 10:39:10

Redis C++编程实例的相关文章

HBase编程实例

摘要:在前文中安装了Hbase,通过Hbase shell可以进行一些操作,但是和实际的编程实例联系起来不方便,因此本文介绍有关Hbase编程的实例. 一.使用Eclipse开发HBase应用程序 1,在Eclipse中新建一个Java Project,命名为HBaseTest,然后右键Properties中选择Java Build Path,选择Add External Jars,将HBase/lib目录下的jar包导入进来. 2,在工程根目录下创建Conf文件夹,将HBase/Conf下的h

c编程实例:809*??=800*??+9*???+1

程序代码: #include<stdio.h>#include<stdio.h>void main(){ int c; int i,j,k; printf("start computing!!!"); for(i=10;i<100;i++){ for(j=100;j<1000;j++){ c=i*809-1-9*j; k=c%800; if(k==0){ k=c/800; if(k>10&&k<100) printf(&q

python 编程实例 1

#python 100 例 1.py #题目:有 1.2.3.4 个数字,能组成多少个互不相同且无重复数字的三位数?都是多 #少? a = {} c = 1 for i in range(1,5): for j in range(1,5): for k in range(1,5): if (i != j,i !=k ,j!= k): #                print (i,j,k) a[c]=(i,j,k) c = c + 1 print (a) #把结果输入到字典 a中,并用c记数

python 编程实例 2

#python 100 2.py #题目:企业发放的奖金根据利润提成.利润 (I)低于或等于 10 万元时,奖金可提 10%:利 #润高 于 10 万元,低于 20 万元时,低于 10 万元的部分按 10%提成,高于 10 万元的部分, #可可提  成 7.5%:20 万到 40 万之间时,高于 20 万元的部分,可提成 5%:40 万到 60 万之间 #时高于 40 万元的部分,可提成 3%:60 万到 100 万之间时,高于 60 万元的部分,可提成 #1.5%,高于 100 万元时,超过

python 编程实例 3

#python 100 例 3.py #题目:一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数.求这个数. import math for x in range(1,100000): y = int(math.sqrt(x + 100)) z = int(math.sqrt(x + 268)) if ( x + 100 == y*y ) and ( x + 268 == z*z): print (x) python 编程实例 3,布布扣,bubuko.com

python 编程实例 4

#python 100例 4.py #输入一个日期,判断这一天是一年中的第几天. import time #print (time.strftime("%Y%m%d%H%M%S")) #当前时间 #print (time.time()) #当前时间的秒数,从1970年1月1日开始计算 b = input("输入一个日期如(20121012): ") #输入要计算的日期 a = b[0:4]+'0101' #获取输入日期的年份并加上1月1日,从当年的1月1日开始计算

python 编程实例 5

#题目:输入三个整数 x,y,z,请把这三个数由小到大输出. #1.程序分析:我们想办法把最小的数放到 x 上,先将 x 与 y 进行比较,如果 x>y 则将 x 与 y #的值交换,再比较X 和Z比较. x = int(input("输入一个正整数X:")) y = int(input("输入一个正整数Y:")) z = int(input("输入一个正整数Z:")) if x >y: if x > z: if y >z

python 编程实例 6

#python 100 例 6.py #输出9*9口决 for i in range(1,10): for j in range(1,10): a = i * j print (i ,"*",j ,"=",a ) python 编程实例 6,布布扣,bubuko.com

python 编程实例 7

#python 100 例 9.py #用*打印出一个棱形 a = int(input("biangchang: ")) #获取由几个* 边长的棱形 i = 1 j = 1 while i<a+1: print ("   "*(a-i)," * "*(2*i-1)) i = i+1 while j<a+1: print ("   "*j," * "*(2*(a-j)-1)) j = j+1 py