linux下redis數據庫的簡單使用


一、redis簡介

  Redis是一個key-value存儲系統。和 Memcached類似,但是解決了斷電后數據完全丟失的情況,而且她支持更多無化的value類型,除了和string外,還支持lists(鏈表)、 sets(集合)和zsets(有序集合)幾種數據類型。這些數據類型都支持push/pop、add/remove及取交集並集和差集及更豐富的操作, 而且這些操作都是原子性的。

二、redis的安裝

首先從在官網下載redis源碼安裝包,下載地址:https://github.com/antirez/redis.git

目前最新分支為3.2

1 git clone -b 3.2  https://github.com/antirez/redis.git

下載完成之后進入redis目錄,編譯安裝直接是

make

make install

編譯安裝完成直接運行

redis-server就可以啟用redis服務,可以用netstat命令查看redis監聽的端口(默認是6379)

redis服務起來之后我就可以進行相應的測試看數據庫是否安裝成功:

在命令行輸入redis-cli啟用redis客戶端:

輸入一下命令測試redis是否安裝成功

127.0.0.1:6379> ping
PONG
127.0.0.1:6379> set test hello
OK
127.0.0.1:6379> get test
"hello"
127.0.0.1:6379>


更多redis命令請參考redis命令手冊,這上面詳細介紹了redis-cli各種命令的用法

http://doc.redisfans.com/

至此,redis數據庫安裝完成

三、redis c 接口庫的安裝

  Redis 是一個高性能的key-value數據庫。 redis的出現,很大程度補償了memcached這類key/value存儲的不足,在部 分場合可以對關系數據庫起到很好的補充作用。它提供了Java,C/C++,C#,PHP,JavaScript,Perl,Object-C,Python,Ruby,Erlang等客戶端,使用很方便

  在這里簡單介紹一下redis的C接口庫:

hiredis是redis的C接口庫,使用之前我們要先下載安裝hiredis,下載地址:https://github.com/redis/hiredis.git

git clone https://github.com/redis/hiredis.git


下載之后進入hiredis目錄

make

make install

下面進行hredis庫中幾個常用函數介紹

(1)redisConnect函數

該函數用於連接redis數據庫

函數原型:

1  redisContext *redisConnect(const char *ip, int port);
2 //說明:該函數用來連接redis數據庫,參數為數據庫的ip地址和端口,一般redis數據庫的端口為6379該函數返回一個結構體redisContext。

redisContext結構體定義如下:

 1 /* Context for a connection to Redis */
 2 typedef struct redisContext {
 3     int err; /* Error flags, 0 when there is no error */
 4     char errstr[128]; /* String representation of error when applicable */
 5     int fd; 
 6     int flags;
 7     char *obuf; /* Write buffer */
 8     redisReader *reader; /* Protocol reader */
 9 
10     enum redisConnectionType connection_type;
11     struct timeval *timeout;
12 
13     struct {
14         char *host;
15         char *source_addr;
16         int port;
17     } tcp;
18 
19     struct {
20         char *path;
21     } unix_sock;
22 
23 } redisContext;

(2)redisCommand函數

該函數用於執行redis的命令;

函數原型:

1 void *redisCommand(redisContext *c, const char *format, ...);
2 /*說明:該函數執行命令,就如sql數據庫中的SQL語句一樣,只是執行的是redis數據庫中的操作命令,
3 第一個參數為連接數據庫時返回的redisContext,
4 后面為可變參數列表,跟C語言printf函數類似,
5 返回值為void*,一般強制轉換成為redisReply類型的進行進一步的處理。*/

用法:

redisReply *reply = (redisReply*)redisCommand(c,   cmd);

redisReply結構體定義如下:

1 /* This is the reply object returned by redisCommand() */
2 typedef struct redisReply {
3     int type; /* REDIS_REPLY_* */
4     long long integer; /* The integer when type is REDIS_REPLY_INTEGER */
5     size_t len; /* Length of string */
6     char *str; /* Used for both REDIS_REPLY_ERROR and REDIS_REPLY_STRING */
7     size_t elements; /* number of elements, for REDIS_REPLY_ARRAY */
8     struct redisReply **element; /* elements vector for REDIS_REPLY_ARRAY */
9 } redisReply;

下面是幾種redis的常見錯誤及返回值類型

 1 #define REDIS_ERR -1
 2 #define REDIS_OK 0
 3 #define REDIS_ERR_IO 1 /* Error in read or write */
 4 #define REDIS_ERR_EOF 3 /* End of file */
 5 #define REDIS_ERR_PROTOCOL 4 /* Protocol error */
 6 #define REDIS_ERR_OOM 5 /* Out of memory */
 7 #define REDIS_ERR_OTHER 2 /* Everything else... */
 8     
 9 #define REDIS_REPLY_STRING 1   //返回字符串,查看str,len字段
10 #define REDIS_REPLY_ARRAY 2    //返回一個數組,查看elements的值(數組個數),通過element[index]的方式訪問數組元素,每個數組元素是一個redisReply對象的指針
11 #define REDIS_REPLY_INTEGER 3  //返回整數,從integer字段獲取值
12 #define REDIS_REPLY_NIL 4      //沒有數據返回
13 #define REDIS_REPLY_STATUS 5   //表示狀態,內容通過str字段查看,字符串長度是len字段
14 #define REDIS_REPLY_ERROR 6    //表示出錯,查看出錯信息,如上的str,len字段

(3)redisRelpyObject函數

還函數用於釋放redisCommand返回值redisReply所占用的內存

1 /* Free a reply object */
2 void freeReplyObject(void *reply)
3 //該函數用於回收釋放redisCommand返回值redisReply所占用的內存

(4)redisFree函數

該函數用於釋放一個redis數據庫的連接

1 void redisFree(redisContext *c)
2 //用於釋放redisConnect產生的連接

下面寫一個簡單的hredis c接口的redis測試程序:

  1 #include <stdio.h>
  2 #include <string.h>
  3 #include <stddef.h>  
  4 #include <stdarg.h>  
  5 #include <string.h>  
  6 #include <assert.h>  
  7 #include <hiredis/hiredis.h> //redis C接口庫
  8 
  9 #define REDIS_HOST        "127.0.0.1"
 10 #define REDIS_PORT        6379
 11 
 12 redisContext *g_ctx = NULL;
 13 
 14 int redis_init()
 15 {    
 16     redisContext *c = NULL;
 17     c = redisConnect(REDIS_HOST, REDIS_PORT);
 18     if (NULL == c || c->err) {
 19         if(c) {
 20             printf("Redis [%s:%d], Error:[%s]\n", REDIS_HOST, REDIS_PORT, c->errstr);
 21             redisFree(c);
 22         } else {
 23             printf("Redis [%s:%d] failure\n", REDIS_HOST, REDIS_PORT);
 24         }
 25         return -1;
 26     }
 27     g_ctx = c;
 28     
 29     return 0;
 30 }
 31 
 32 void redis_free()
 33 {
 34     if (g_ctx) {
 35         redisFree(g_ctx);
 36     }
 37     g_ctx = NULL;
 38 }
 39 
 40 int redis_test(const char *cmd)
 41 {
 42     int i = 0;
 43     redisReply *r = NULL;
 44     if (NULL == cmd) {
 45         return -1;
 46     }
 47 
 48     printf("%s\n", cmd);
 49 
 50     r = (redisReply *)redisCommand(g_ctx, cmd);
 51     if (NULL == r) {
 52         printf("%s, Error[%d:%s]", g_ctx->err, g_ctx->errstr);
 53         return -1;
 54     }
 55 
 56     printf("type: %d\n", r->type); 
 57     switch(r->type) {
 58     case REDIS_REPLY_STATUS:
 59         printf("type:%s, reply->len:%d reply->str:%s\n", "REDIS_REPLY_STATUS", r->len, r->str);
 60         break;
 61     case REDIS_REPLY_ERROR:
 62         printf("type:%s, reply->len:%d reply->str:%s\n", "REDIS_REPLY_ERROR", r->len, r->str);
 63         break;
 64     case REDIS_REPLY_INTEGER:
 65         printf("type:%s, reply->integer:%lld\n", "REDIS_REPLY_INTEGER", r->integer);
 66         break;
 67     case REDIS_REPLY_NIL:
 68         printf("type:%s, no data\n", "REDIS_REPLY_NIL");
 69         break;
 70     case REDIS_REPLY_STRING:
 71         printf("type:%s, reply->len:%d reply->str:%s\n", "REDIS_REPLY_STRING", r->len, r->str);
 72         break;
 73     case REDIS_REPLY_ARRAY:
 74         printf("type:%s, reply->elements:%d\n", "REDIS_REPLY_ARRAY", r->elements);
 75         for (i = 0; i < r->elements; i++) {
 76             printf("%d: %s\n", i, r->element[i]->str);
 77         }
 78         break;
 79     default:
 80         printf("unkonwn type:%s\n", r->type);
 81         break;
 82     }
 83  
 84     /*release reply and context */
 85     freeReplyObject(r); 
 86     return 0; 
 87 }
 88 
 89 int main()
 90 {
 91     const char *cmd = NULL;
 92 
 93     /* init redis */
 94     if (redis_init()) {
 95         return -1;
 96     }
 97 
 98     /* 1: SET<--->GET */
 99     printf("SET<--->GET\n");
100     cmd = "set foo bar";
101     redis_test(cmd);
102     cmd = "get foo";
103     redis_test(cmd);
104 
105     /* 2: SADD<--->SMEMBERS */
106     printf("\nSADD<--->SMEMBERS\n");
107     cmd = "SADD namelist jack lily lucy tom";
108     redis_test(cmd);
109     cmd = "SMEMBERS namelist";
110     redis_test(cmd);
111     
112     /* 3: .....*/
113     
114     /* free redis context */
115     redis_free();
116     
117     return 0;
118 }

運行結果:

SET<--->GET
set foo bar
type: 5
type:REDIS_REPLY_STATUS, reply->len:2 reply->str:OK
get foo
type: 1
type:REDIS_REPLY_STRING, reply->len:3 reply->str:bar

SADD<--->SMEMBERS
SADD namelist jack lily lucy tom
type: 3
type:REDIS_REPLY_INTEGER, reply->integer:0
SMEMBERS namelist
type: 2
type:REDIS_REPLY_ARRAY, reply->elements:4
0: lucy
1: jack
2: lily
3: tom

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM