Linux下redis 的安装以及C++操作redis

打开Redis官网,进入下载页面,选择一个适合自己电脑的版本下载即可,下载飞机票http://redis.io/download,下载完成后解压、编译、安装,依次在终端下执行如下命令:

 
  
  1. tar -zxvf redis-2.8.7.tar.gz
  2. cd redis-2.8.7
  3. sudo apt-get install tcl(redis测试程序需要tcl版本至少为8.5)
  4. make 32bit(64位系统直接使用make即可)
  5. sudo make install(将编译生成的可执行文件拷贝到/usr/local/bin目录下)
  6. make test(用于确认安装正确与否)

编译生成的可执行文件有:
1. redis-server redis服务器
2. redis-cli redis客户端
3. redis-benchmark redis性能测试工具
4. redis-check-aof aof文件修复工具
5. redis-check-dump rdb文件检查工具
6. redis-sentinel redis集群管理工具

编译、安装完成后,在终端中输入redis-server以最简单的方式启动redis服务端,然后在另一个终端中输入redis-cli来连接redis服务端,接下来可以尝试各种命令了,可以在http://try.redis.io预习下redis的各种命令,还可以在redis官网查看redis支持的命令。

需要使用C/C++操作Redis,就需要安装C/C++ Redis Client Library,这里我使用的是hiredis,这是官方使用的库,而且用得人比较多,在终端下依次执行下列命令进行下载、安装:

 
  
  1. git clone https://github.com/redis/hiredis
  2. cd hiredis
  3. make
  4. sudo make install(复制生成的库到/usr/local/lib目录下)
  5. sudo ldconfig /usr/local/lib
hiredis是redis数据库的C接口,目前只能在linux下使用,几个基本的函数就可以操作redis数据库了

 

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

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

函数返回值:该函数返回一个结构体redisContext;

类似的提供了一个函数redisContext* redisConnectWithTimeout(const char *ip, int port, timeval tv),以带有超时的方式连接redis服务器,同时获取与redis连接的上下文对象。

 

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

 g++ OperatorRedis.cpp -o OperatorRedis -lhiredis


执行结果为:


你可能感兴趣的:(Linux,C++,redis)