代码拉取完成,页面将自动刷新
#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;
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。