真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在C++項目中使用redis-創(chuàng)新互聯(lián)

今天就跟大家聊聊有關(guān)怎么在C++項目中使用redis,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

創(chuàng)新互聯(lián)專注于江岸企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站,商城網(wǎng)站建設(shè)。江岸網(wǎng)站建設(shè)公司,為江岸等地區(qū)提供建站服務(wù)。全流程按需定制網(wǎng)站,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

C++使用redis的實例詳解

hiredis是redis數(shù)據(jù)庫的C接口,目前只能在linux下使用,幾個基本的函數(shù)就可以操作redis數(shù)據(jù)庫了。 

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

說明:該函數(shù)用來連接redis數(shù)據(jù)庫,參數(shù)為數(shù)據(jù)庫的ip地址和端口,一般redis數(shù)據(jù)庫的端口為6379;

函數(shù)返回值:該函數(shù)返回一個結(jié)構(gòu)體redisContext;

類似的提供了一個函數(shù)redisContext* redisConnectWithTimeout(const char *ip, int port, timeval tv),以帶有超時的方式連接redis服務(wù)器,同時獲取與redis連接的上下文對象。 

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

說明:該函數(shù)執(zhí)行命令,就如sql數(shù)據(jù)庫中的SQL語句一樣,只是執(zhí)行的是redis數(shù)據(jù)庫中的操作命令,第一個參數(shù)為連接數(shù)據(jù)庫時返回的redisContext,剩下的參數(shù)為變參,就如C標(biāo)準(zhǔn)函數(shù)printf函數(shù)一樣的變參。

函數(shù)返回值:返回值為void*,一般強制轉(zhuǎn)換成為redisReply類型,以便做進一步處理。

函數(shù)原型void freeReplyObject(void *reply);

說明:釋放redisCommand執(zhí)行后返回的redisReply所占用的內(nèi)存;

函數(shù)返回值:無。

函數(shù)原型:void redisFree(redisContext *c);

說明:釋放redisConnect()所產(chǎn)生的連接。

函數(shù)返回值:無。

下面用一個簡單的例子說明:

#include  
#include  
#include  
#include  
#include  
#include  
#include  
 
void doTest() 
{ 
  //redis默認監(jiān)聽端口為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; 
}

執(zhí)行結(jié)果為:

怎么在C++項目中使用redis

看完上述內(nèi)容,你們對怎么在C++項目中使用redis有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝大家的支持。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


本文題目:怎么在C++項目中使用redis-創(chuàng)新互聯(lián)
本文地址:http://weahome.cn/article/jedop.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部