上篇簡單介紹了Redis及其安裝部署,這篇記錄一下如何用C++語言和JavaScript語言訪問操做Redisnode
不少語言都包含Redis支持,Redis也提供了Java,C/C++,C#,PHP,JavaScript,Perl,Object-C,Python,Ruby,Erlang等客戶端,使用很方便。下面這個網址是Redis官方提供的客戶端,包含了不少語言:git
https://redis.io/clientsgithub
ODBC:(付費)redis
Redis ODBC驅動程序是一個功能強大的工具,容許您直接從支持ODBC鏈接的任何應用程序鏈接Redis高性能數據存儲。經過標準ODBC驅動程序接口讀取,寫入和更新Redis數據。sql
JDBC:https://code.google.com/p/jdbc-redis/數據庫
WebService:(暫未找到)npm
Restful:(暫未找到)windows
目前C/C++操做Redis的方法主要分爲兩種:api
函數原型: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()所產生的鏈接。
函數返回值:無。
具體步驟以下:
安裝好hiredis後,進入目錄執行make install:
執行事後則會將hiredis.h等文件 copy到 /usr/local/include/hiredis/
會將 lib文件放入/usr/local/lib/ 中。
建立一個測試代碼:
#include <stdio.h> #include <stdlib.h> #include <stddef.h> #include <stdarg.h> #include <string.h> #include <assert.h> #include <hiredis/hiredis.h> void doTest() { //redis默認監聽端口爲6387 能夠再配置文件中修改 redisContext* c = redisConnect("127.0.0.1", 6379); if ( c->err) { redisFree(c); printf("Connect to redisServer faile\n"); return ; } printf("Connect to redisServer Success\n"); const char* command1 = "set stest1 value1"; redisReply* r = (redisReply*)redisCommand(c, command1); if( NULL == r) { printf("Execut command1 failure\n"); redisFree(c); return; } if( !(r->type == REDIS_REPLY_STATUS && strcasecmp(r->str,"OK")==0)) { printf("Failed to execute command[%s]\n",command1); freeReplyObject(r); redisFree(c); return; } freeReplyObject(r); printf("Succeed to execute command[%s]\n", command1); const char* command2 = "strlen stest1"; r = (redisReply*)redisCommand(c, command2); if ( r->type != REDIS_REPLY_INTEGER) { printf("Failed to execute command[%s]\n",command2); freeReplyObject(r); redisFree(c); return; } int length = r->integer; freeReplyObject(r); printf("The length of 'stest1' is %d.\n", length); printf("Succeed to execute command[%s]\n", command2); const char* command3 = "get stest1"; r = (redisReply*)redisCommand(c, command3); if ( r->type != REDIS_REPLY_STRING) { printf("Failed to execute command[%s]\n",command3); freeReplyObject(r); redisFree(c); return; } printf("The value of 'stest1' is %s\n", r->str); freeReplyObject(r); printf("Succeed to execute command[%s]\n", command3); const char* command4 = "get stest2"; r = (redisReply*)redisCommand(c, command4); if ( r->type != REDIS_REPLY_NIL) { printf("Failed to execute command[%s]\n",command4); freeReplyObject(r); redisFree(c); return; } freeReplyObject(r); printf("Succeed to execute command[%s]\n", command4); redisFree(c); } int main() { doTest(); return 0; }
使用 g++ -lhiredis -o redisTest redisTest .cpp命令進行編譯:
運行:
此外,開源的基於C++11和boost::asio的跨平臺redis接口,能夠實現C++操做redis,在windows環境和Linux環境下均可以使用,基本步驟以下:
第一步:安裝好redis,開啓redis server;
第二步:將代碼下載下來,目錄結構以下:
其中:
src目錄裏面就是全部用到的api,基於boost::asio寫的,能夠跨平臺調用
examples裏面是一些跟redis鏈接的例子
tests裏面有單元測試的例子
第三步:建立demo工程
將src目錄拷貝到demo工程目錄,並配置好boost庫
編寫同步和異步兩種方式的應用實例
詳見:https://github.com/nekipelov/redisclient
如下是Redis官方https://redis.io/clients提供的Node.js客戶端,其中帶星的是其推薦的方式。
在此以前,須要先在Linux上安裝部署node.js並配置環境變量。
首先下載node.js的Linux版並解壓出來,https://nodejs.org/en/download/
打開解壓後的bin文件夾,裏面有兩個文件node和npm
接下來建立軟鏈接並配置環境變量
建立軟鏈接
配置環境變量
運行
安裝Redis對Node.js的支持 https://redis.io/clients#nodejs(Linux):
開啓redis-server端:
鏈接Redis代碼:
利用程序獲取redis中的值:
綜上所述,C/C++語言和Node.js均可以訪問Redis接口,但C++語言訪問Redis時須要本身編譯hiredis源碼或者安裝boost庫,相對來講仍是JavaScript訪問操做Redis更爲簡單高效。