hiredis C接口

redis C接口hiredis 简单函数使用介绍

2013-10-18 13:41 7636人阅读 评论(0) 收藏 举报

from : http://blog.csdn.net/kingqizhou/article/details/8104693

hiredis是redis数据库的C接口,目前只能在linux下使用,几个基本的函数就可以操作redis数据库了。

函数原型:redisContext *redisConnect(const char *ip, int port)

说明:该函数用来连接redis数据库,参数为数据库的ip地址和端口,一般redis数据库的端口为6379

该函数返回一个结构体redisContext。

函数原型:void *redisCommand(redisContext *c, const char *format, ...);

说明:该函数执行命令,就如sql数据库中的SQL语句一样,只是执行的是redis数据库中的操作命令,第一个参数为连接数据库时返回的redisContext,剩下的参数为变参,就如C标准函数printf函数一样的变参。返回值为void*,一般强制转换成为redisReply类型的进行进一步的处理。

函数原型void freeReplyObject(void *reply);

说明:释放redisCommand执行后返回的redisReply所占用的内存

函数原型:void redisFree(redisContext *c);

说明:释放redisConnect()所产生的连接。

下面用一个简单的例子说明:

[cpp] view plaincopy

  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/hiredis.h>
  8. void doTest()
  9. {
  10. //redis默认监听端口为6387 可以再配置文件中修改
  11. redisContext* c = redisConnect("127.0.0.1", 6379);
  12. if ( c->err)
  13. {
  14. redisFree(c);
  15. printf("Connect to redisServer faile\n");
  16. return ;
  17. }
  18. printf("Connect to redisServer Success\n");
  19. const char* command1 = "set stest1 value1";
  20. redisReply* r = (redisReply*)redisCommand(c, command1);
  21. if( NULL == r)
  22. {
  23. printf("Execut command1 failure\n");
  24. redisFree(c);
  25. return;
  26. }
  27. if( !(r->type == REDIS_REPLY_STATUS && strcasecmp(r->str,"OK")==0))
  28. {
  29. printf("Failed to execute command[%s]\n",command1);
  30. freeReplyObject(r);
  31. redisFree(c);
  32. return;
  33. }
  34. freeReplyObject(r);
  35. printf("Succeed to execute command[%s]\n", command1);
  36. const char* command2 = "strlen stest1";
  37. r = (redisReply*)redisCommand(c, command2);
  38. if ( r->type != REDIS_REPLY_INTEGER)
  39. {
  40. printf("Failed to execute command[%s]\n",command2);
  41. freeReplyObject(r);
  42. redisFree(c);
  43. return;
  44. }
  45. int length =  r->integer;
  46. freeReplyObject(r);
  47. printf("The length of ‘stest1‘ is %d.\n", length);
  48. printf("Succeed to execute command[%s]\n", command2);
  49. const char* command3 = "get stest1";
  50. r = (redisReply*)redisCommand(c, command3);
  51. if ( r->type != REDIS_REPLY_STRING)
  52. {
  53. printf("Failed to execute command[%s]\n",command3);
  54. freeReplyObject(r);
  55. redisFree(c);
  56. return;
  57. }
  58. printf("The value of ‘stest1‘ is %s\n", r->str);
  59. freeReplyObject(r);
  60. printf("Succeed to execute command[%s]\n", command3);
  61. const char* command4 = "get stest2";
  62. r = (redisReply*)redisCommand(c, command4);
  63. if ( r->type != REDIS_REPLY_NIL)
  64. {
  65. printf("Failed to execute command[%s]\n",command4);
  66. freeReplyObject(r);
  67. redisFree(c);
  68. return;
  69. }
  70. freeReplyObject(r);
  71. printf("Succeed to execute command[%s]\n", command4);
  72. redisFree(c);
  73. }
  74. int main()
  75. {
  76. doTest();
  77. return 0;
  78. }

执行结果为:

时间: 2024-10-08 14:46:05

hiredis C接口的相关文章

C++ Redis mset 二进制数据接口封装方案

需求 C++中使用hiredis客户端接口访问redis: 需要使用mset一次设置多个二进制数据 以下给出三种封装实现方案: 简单拼接方案 在redis-cli中,mset的语法是这样的: /opt/colin$./redis-cli mset a 11 b 22 c 333 OK 按照这样的语法拼接后,直接使用hiredis字符串接口redisCommand传递: void msetNotBinary(redisContext *c, const vector<string> &v

SylixOS移植Redis库总结

1. Redis简介 Redis是一个开源软件项目(BSD许可),用ANSI C编写,适用于大多数的POSIX系统,是一个可用作数据库.缓存和消息代理的内存数据库.Redis是一个非关系型数据库,Redis可以存储键与五种不同数据结构类型之间的映射,这五种类型分别为:字符串.列表.集合.有序集合和散列.Redis通常将整个数据集保存在内存中,Redis通过两种不同的方式实现持久性:一种是快照,另一种是AOF(AppendOnly File).Redis支持主从复制,来自任何Redis服务器的数据

C++操作Redis数据库

今天,Mayuyu来学习如何用C++来操作redis数据库.通过hiredis.h接口来实现,目前只能在Linux环境使用. hiredis.h的下载地址为:https://github.com/redis/hiredis 主要包括如下四个方法 1. redisContext* redisConnect(const char *ip, int port) 该函数用来连接redis数据库, 两个参数分别是redis数据库的ip和端口,端口号一般为6379.类似 的还提供了一个函数,供连接超时限定,

Linux 安装Redis

今天,Mayuyu来学习如何用C++来操作redis数据库.通过hiredis.h接口来实现,目前只能在Linux环境使用. hiredis.h 的下载地址为: https://github.com/redis/hiredis 主要包括如下四个方法 1. redisContext* redisConnect(const char *ip, int port) 该函数用来连接redis数据库, 两个参数分别是redis数据库的ip和端口,端口号一般为6379.类似 的还提供了一个函数,供连接超时限

redis数据库操作的C++简单封装

用c++简单封装了redis的基本操作(hiredis) 接口包括:①链接和断开连接.②设置键值对(set).③查询键值对(get).④删除键值对(del).⑤将所有键显示出来 若任何一处发生错误,返回对应的错误状态码,同时可以调用getErrorMsg()查看错误信息 所有码包括: M_REDIS_OK = 0, //执行成功 M_CONNECT_FAIL = -1, //连接redis失败 M_CONTEXT_ERROR = -2, //RedisContext返回错误 M_REPLY_ER

Redis的C++与JavaScript访问操作

上篇简单介绍了Redis及其安装部署,这篇记录一下如何用C++语言和JavaScript语言访问操作Redis 1. Redis的接口访问方式(通用接口或者语言接口) 很多语言都包含Redis支持,Redis也提供了Java,C/C++,C#,PHP,JavaScript,Perl,Object-C,Python,Ruby,Erlang等客户端,使用很方便.下面这个网址是Redis官方提供的客户端,包含了很多语言: https://redis.io/clients ODBC:(付费) Redis

redis C接口hiredis 简单函数使用介绍

hiredis是redis数据库的C接口,目前只能在linux下使用,几个基本的函数就可以操作redis数据库了. 函数原型:redisContext *redisConnect(const char *ip, int port) 说明:该函数用来连接redis数据库,参数为数据库的ip地址和端口,一般redis数据库的端口为6379 该函数返回一个结构体redisContext. 函数原型:void *redisCommand(redisContext *c, const char *form

Redis接口的调用

1.hiredis是redis数据库的C接口,目录为/redis-3.2.6/deps/hiredis 2.示例代码如下: #include <stdio.h> #include <stdlib.h> #include <stddef.h> #include <stdarg.h> #include <string.h> #include <assert.h> #include "hiredis.h" int mai

linux下使用hiredis异步API实现sub/pub消息订阅和发布的功能

最近使用redis的c接口--hiredis,使客户端与redis服务器通信,实现消息订阅和发布(PUB/SUB)的功能,我把遇到的一些问题和解决方法列出来供大家学习. 废话不多说,先贴代码. redis_publisher.h /************************************************************************* > File Name: redis_publisher.h > Author: chenzengba > Ma