1 Star 0 Fork 0

hancm/my-utility

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
redis_client.h 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
hanchangming 提交于 2021-10-08 17:15 . 添加utility
#pragma once
#include <string>
#include <map>
#include "xredis/xRedisClient.h"
#define MAXINDEX 5
struct RedisHost
{
std::string host;
std::string port;
std::string database;
std::string user;
std::string passwd;
};
class RedisClient
{
public:
RedisClient();
~RedisClient();
public:
bool connect(const std::vector<RedisHost> &hosts);
void keepAlive();
//key
bool exists(const std::string &key);
bool pexpire(const std::string &key, unsigned int milliseconds);
// string
bool get(const std::string &key, std::string &outValue);
bool set(const std::string &key, const std::string &value);
bool mget(std::map<std::string, std::string> &keyValuePairs);
bool mset(const std::map<std::string, std::string> &keyValuePairs);
bool mdel(const std::vector<std::string> &keys);
// hash
bool hmget(const std::string &key, std::map<std::string, std::string> &fieldAndValues);
bool hmset(const std::string &key, const std::map<std::string, std::string> &fieldAndValues);
bool hmdel(const std::string &key, const std::vector<std::string> &fields);
private:
bool createRedisDBIdx(const std::string &key, RedisDBIdx &redis_dbi);
private:
RedisNode redisNodeList[MAXINDEX];
xRedisClient xRedis;
bool isConnected = false;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/adahancm/my-utility.git
git@gitee.com:adahancm/my-utility.git
adahancm
my-utility
my-utility
master

搜索帮助