redis C介面hiredis 簡單函數使用介紹

來源:互聯網
上載者:User

標籤:blog   http   使用   io   strong   檔案   資料   for   

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 plaincopyprint? 
  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.   
  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. }  

 

執行結果為:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.