VS2017的redis客户端实现

本文涉及的产品
云数据库 Tair(兼容Redis),内存型 2GB
Redis 开源版,标准版 2GB
推荐场景:
搭建游戏排行榜
简介: VS2017的redis客户端实现

VS2017下Redis服务器源码地址

https://download.csdn.net/download/qq_23350817/88541316

VS2017下Redis客户端源码地址(hiredis已完成windows下编译):

https://download.csdn.net/download/qq_23350817/88541242

C代码实现:

#include <stdio.h> 
#include <stdlib.h> 
#include <stddef.h> 
#include <stdarg.h> 
#include <string.h> 
#include <assert.h> 
#include <hiredis.h>
void doTest()
{
  //redis默认监听端口为6387 可以再配置文件中修改 
  redisContext* c = redisConnect("10.10.0.7", 6379);
  if (c->err)
  {
    redisFree(c);
    printf("Connect to redisServer faile\n");
    return;
  }
  // 进行身份验证(用户名和密码)
  redisReply *reply = (redisReply *)redisCommand(c, "AUTH test123");  // 替换为你的 Redis 密码
  if (reply == NULL || reply->type == REDIS_REPLY_ERROR) {
    printf("Authentication failed: %s\n", reply ? reply->str : "NULL");
    freeReplyObject(reply);
    return;
  }
  freeReplyObject(reply);
  reply = redisCommand(c, "SELECT 0");
  if (reply == NULL || reply->type == REDIS_REPLY_ERROR) {
    printf("Error selecting database: %s\n", reply ? reply->str : "NULL");
    freeReplyObject(reply);
    redisFree(c);
    return;
  }
  const char* command = "get auth:third-party:token";
  redisReply* r = (redisReply*)redisCommand(c, command);
  r = (redisReply*)redisCommand(c, command);
  if (r->type != REDIS_REPLY_STRING)
  {
    printf("Failed to execute command[%s]\n", command);
    freeReplyObject(r);
    redisFree(c);
    return;
  }
  printf("The value of 'sunx' is %s\n", r->str);
  freeReplyObject(r);
  printf("Succeed to execute command[%s]\n", command);
  redisFree(c);
}
int main()
{
  doTest();
  return 0;
}
#include <stdio.h> 
#include <stdlib.h> 
#include <stddef.h> 
#include <stdarg.h> 
#include <string.h> 
#include <assert.h> 
#include <hiredis.h> 
void doTest()
{
  //redis默认监听端口为6387 可以再配置文件中修改 
  redisContext* c = redisConnect("10.100.0.127", 6379);
  if (c->err)
  {
    redisFree(c);
    printf("Connect to redisServer faile\n");
    return;
  }
  printf("Connect to redisServer Success\n");
  const char* command1 = "set sunx 123456789";
  redisReply* r = (redisReply*)redisCommand(c, command1);
  if (NULL == r)
  {
    printf("Execut command1 failure\n");
    redisFree(c);
    return;
  }
  if (!(r->type == REDIS_REPLY_STATUS && strcmp(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 sunx";
  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 'sunx' is %d.\n", length);
  printf("Succeed to execute command[%s]\n", command2);
  const char* command3 = "get sunx";
  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 'sunx' is %s\n", r->str);
  freeReplyObject(r);
  printf("Succeed to execute command[%s]\n", command3);
  const char* command4 = "get test";
  r = (redisReply*)redisCommand(c, command4);
  if (r->type != REDIS_REPLY_NIL)
  {
    printf("Failed to execute command[%s]\n", command4);
    freeReplyObject(r);
    redisFree(c);
    return;
  }
  printf("The value of 'test' is %s\n", r->str);
  freeReplyObject(r);
  printf("Succeed to execute command[%s]\n", command4);
  redisFree(c);
}
int main()
{
  doTest();
  return 0;
}

C++代码实现:

#include <iostream>
#include <string>
#include <winsock2.h>
extern "C" {
#include <hiredis.h>
}
#pragma comment(lib, "hiredis.lib")
#pragma comment(lib, "Win32_Interop.lib")
std::string GetToken()
{
  std::string strToken = "";
  std::string ipaddr = "10.100.0.127";
  int port = 6379;
  struct timeval timeout = { 5, 0 }; // 设置超时时间为 5 秒
  std::string password = "hlxredis";
  std::string setPasswdCmd = "AUTH " + password;
  std::string tokenKey = "auth:third-party:token";
  redisContext* c = redisConnectWithTimeout(ipaddr.c_str(), port, timeout);
  if (c->err)
  {
    redisFree(c);
    printf("Connect to redisServer faile\n");
    return strToken;
  }
  redisReply *reply = (redisReply *)redisCommand(c, setPasswdCmd.c_str());
  if (reply == NULL || reply->type == REDIS_REPLY_ERROR) {
    printf("Authentication failed: %s\n", reply ? reply->str : "NULL");
    freeReplyObject(reply);
    return strToken;
  }
  freeReplyObject(reply);
  std::string selectDbCmd = "SELECT 0";
  reply = (redisReply *)redisCommand(c, selectDbCmd.c_str());
  if (reply == NULL || reply->type == REDIS_REPLY_ERROR) {
    printf("Error selecting database: %s\n", reply ? reply->str : "NULL");
    freeReplyObject(reply);
    redisFree(c);
    return strToken;
  }
  std::string getTokenCmd = "get " + tokenKey;
  redisReply* r = (redisReply*)redisCommand(c, getTokenCmd.c_str());
  if (r->type != REDIS_REPLY_STRING)
  {
    printf("Failed to execute command[%s]\n", getTokenCmd.c_str());
    freeReplyObject(r);
    redisFree(c);
    return strToken;
  }
  strToken = r->str;
  printf("The value of 'sunx' is %s\n", r->str);
  freeReplyObject(r);
  printf("Succeed to execute command[%s]\n", getTokenCmd.c_str());
  redisFree(c);
  return strToken;
}
int main()
{
  std::cout << "token:" << GetToken() << std::endl;;
  return 0;
}

注意:C++代码实现时,VS2017可能会报错检测到“RuntimeLibrary”的不匹配项: 值“MT_StaticRelease”不匹配值“MD_DynamicRelease”,此时需要如下修改:

运行结果如下:

相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore &nbsp; &nbsp; ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库&nbsp;ECS 实例和一台目标数据库&nbsp;RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&amp;RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
相关文章
|
2月前
|
NoSQL Redis 数据安全/隐私保护
Redis 最流行的图形化界面下载及使用超详细教程(带安装包)! redis windows客户端下载
文章提供了Redis最流行的图形化界面工具Another Redis Desktop Manager的下载及使用教程,包括如何下载、解压、连接Redis服务器以及使用控制台和查看数据类型详细信息。
150 6
Redis 最流行的图形化界面下载及使用超详细教程(带安装包)! redis windows客户端下载
|
2月前
|
NoSQL Redis 数据库
Redis 图形化界面下载及使用超详细教程(带安装包)! redis windows下客户端下载
文章提供了Redis图形化界面工具的下载及使用教程,包括如何连接本地Redis服务器、操作键值对、查看日志和使用命令行等功能。
143 0
Redis 图形化界面下载及使用超详细教程(带安装包)! redis windows下客户端下载
|
4月前
|
缓存 NoSQL Redis
【Azure Redis 缓存】Redission客户端连接Azure:客户端出现 Unable to send PING command over channel
【Azure Redis 缓存】Redission客户端连接Azure:客户端出现 Unable to send PING command over channel
192 3
|
2月前
|
NoSQL 网络协议 算法
Redis 客户端连接
10月更文挑战第21天
33 1
|
2月前
|
存储 消息中间件 NoSQL
Redis 入门 - C#.NET Core客户端库六种选择
Redis 入门 - C#.NET Core客户端库六种选择
64 8
|
3月前
|
JSON NoSQL Java
redis的java客户端的使用(Jedis、SpringDataRedis、SpringBoot整合redis、redisTemplate序列化及stringRedisTemplate序列化)
这篇文章介绍了在Java中使用Redis客户端的几种方法,包括Jedis、SpringDataRedis和SpringBoot整合Redis的操作。文章详细解释了Jedis的基本使用步骤,Jedis连接池的创建和使用,以及在SpringBoot项目中如何配置和使用RedisTemplate和StringRedisTemplate。此外,还探讨了RedisTemplate序列化的两种实践方案,包括默认的JDK序列化和自定义的JSON序列化,以及StringRedisTemplate的使用,它要求键和值都必须是String类型。
redis的java客户端的使用(Jedis、SpringDataRedis、SpringBoot整合redis、redisTemplate序列化及stringRedisTemplate序列化)
|
4月前
|
NoSQL 网络协议 Linux
【AKS+Redis】AKS中客户端(ioredis)遇见Azure Redis服务Failover后链接中断的可能性
【AKS+Redis】AKS中客户端(ioredis)遇见Azure Redis服务Failover后链接中断的可能性
|
4月前
|
NoSQL 网络协议 Linux
【Azure Redis】Lettuce客户端遇见连接Azure Redis长达15分钟的超时
【Azure Redis】Lettuce客户端遇见连接Azure Redis长达15分钟的超时
|
4月前
|
NoSQL 网络协议 Linux
【Azure Redis】Redis客户端出现15分钟的超时异常
【Azure Redis】Redis客户端出现15分钟的超时异常
|
4月前
|
缓存 监控 NoSQL
【Azure Redis 缓存】Azure Redis出现了超时问题后,记录一步一步的排查出异常的客户端连接和所执行命令的步骤
【Azure Redis 缓存】Azure Redis出现了超时问题后,记录一步一步的排查出异常的客户端连接和所执行命令的步骤