1 Star 0 Fork 1

DkSun/memtier_benchmark

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cluster_client.h 2.18 KB
一键复制 编辑 原始数据 按行查看 历史
YaacovHazan 提交于 2018-08-28 15:55 . support ASK in cluster mode (#60)
/*
* Copyright (C) 2011-2017 Redis Labs Ltd.
*
* This file is part of memtier_benchmark.
*
* memtier_benchmark is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
*
* memtier_benchmark is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with memtier_benchmark. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MEMTIER_BENCHMARK_CLUSTER_CLIENT_H
#define MEMTIER_BENCHMARK_CLUSTER_CLIENT_H
#include <set>
#include "client.h"
typedef std::queue<unsigned long long> key_index_pool;
// forward decleration
class shard_connection;
class cluster_client : public client {
protected:
std::vector<key_index_pool*> m_key_index_pools;
unsigned int m_slot_to_shard[16384];
char m_key_buffer[250];
int m_key_len;
virtual int connect(void);
virtual void disconnect(void);
shard_connection* create_shard_connection(abstract_protocol* abs_protocol);
bool connect_shard_connection(shard_connection* sc, char* address, char* port);
bool get_key_for_conn(unsigned int conn_id, int iter, unsigned long long* key_index);
void handle_moved(unsigned int conn_id, struct timeval timestamp,
request *request, protocol_response *response);
void handle_ask(unsigned int conn_id, struct timeval timestamp,
request *request, protocol_response *response);
public:
cluster_client(client_group* group);
virtual ~cluster_client();
// client manager api's
virtual void handle_cluster_slots(protocol_response *r);
virtual void create_request(struct timeval timestamp, unsigned int conn_id);
virtual bool hold_pipeline(unsigned int conn_id);
virtual void handle_response(unsigned int conn_id, struct timeval timestamp,
request *request, protocol_response *response);
};
#endif //MEMTIER_BENCHMARK_CLUSTER_CLIENT_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dksun/memtier_benchmark.git
[email protected]:dksun/memtier_benchmark.git
dksun
memtier_benchmark
memtier_benchmark
master

搜索帮助