mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 21:09:19 +08:00
34 lines
930 B
C++
34 lines
930 B
C++
#pragma once
|
|
|
|
class redis_status
|
|
{
|
|
public:
|
|
redis_status(const char* addr, int conn_timeout, int rw_timeout,
|
|
const char* passwd);
|
|
~redis_status(void);
|
|
|
|
void show_nodes(void);
|
|
static void show_nodes(acl::redis& redis);
|
|
|
|
static void show_nodes_tree(
|
|
const std::map<acl::string, acl::redis_node*>&);
|
|
static void show_nodes_tree(const std::vector<acl::redis_node*>& nodes);
|
|
static void show_slave_tree(const std::vector<acl::redis_node*>& slaves);
|
|
|
|
static bool show_nodes(const std::map<acl::string,
|
|
acl::redis_node*>* masters);
|
|
|
|
static void show_master_slots(const acl::redis_node* master);
|
|
static void show_slave_nodes(const std::vector<acl::redis_node*>& slaves);
|
|
|
|
void show_slots();
|
|
static bool show_slots(acl::redis& redis);
|
|
static void show_slaves_slots(const acl::redis_slot* slot);
|
|
|
|
private:
|
|
acl::string addr_;
|
|
int conn_timeout_;
|
|
int rw_timeout_;
|
|
acl::string passwd_;
|
|
};
|