├── README.md ├── README_CN.md ├── doc ├── cacheeasy-redis私有云平台.pptx ├── cluster_arch.png └── sentinel_arch.png └── help ├── en ├── add_inst_dialog.png ├── add_machines.png ├── add_machines_more_options.png ├── chpwd.png ├── cluster_delete.png ├── cluster_group_action.png ├── cluster_group_config.png ├── cluster_group_topology.png ├── cluster_insts_action.png ├── cluster_mod_alert_template.png ├── cluster_overview.png ├── cluster_reshard.png ├── clusters.png ├── clusters_overview.png ├── content.png ├── custom_add_cluster.png ├── custom_add_cluster_example.png ├── deploy_agents.png ├── deploy_insts.png ├── home_empty.png ├── join_cluster.png ├── join_cluster_task.png ├── login.png ├── machine_manage.png ├── machine_overview.png ├── machines_action.png ├── machines_cond_seach.png ├── machines_manage.png ├── machines_overview.png ├── nav.png ├── path.png ├── quick_add_cluster.png ├── quick_add_cluster_example.png └── redis_cluster_manage.png └── zh ├── add_inst_dialog.png ├── add_machines.png ├── add_machines_more_options.png ├── chpwd.png ├── cluster_delete.png ├── cluster_group_action.png ├── cluster_group_config.png ├── cluster_group_topology.png ├── cluster_insts_action.png ├── cluster_mod_alert_template.png ├── cluster_overview.png ├── cluster_reshard.png ├── clusters.png ├── clusters_overview.png ├── content.png ├── custom_add_cluster.png ├── custom_add_cluster_example.png ├── deploy_agents.png ├── deploy_insts.png ├── home_empty.png ├── join_cluster.png ├── join_cluster_task.png ├── login.png ├── machine_manage.png ├── machine_overview.png ├── machines_action.png ├── machines_cond_seach.png ├── machines_manage.png ├── machines_overview.png ├── nav.png ├── path.png ├── quick_add_cluster.png ├── quick_add_cluster_example.png └── redis_cluster_manage.png /README.md: -------------------------------------------------------------------------------- 1 | # CacheEasy [中文版](https://github.com/joyieldInc/cacheeasy/blob/master/README_CN.md) 2 | 3 | A redis private cloud platform 4 | 5 | # Features 6 | 7 | + Supports redis standalone and redis cluster 8 | + Uses redis sentinel for redis standalone automatic 9 | + With redis proxy [predixy](https://github.com/joyieldInc/predixy), the redis client don't consider redis sentinel or redis cluster 10 | + Create redis service quickly 11 | + Show service status by Grafana 12 | + Scale redis service easy 13 | + Alert monitor 14 | + Easy to use, don't require root 15 | 16 | # QuickStart 17 | 18 | ## 1. Install 19 | Just get the release package, then unpack it. 20 | 21 | tar jxvf cacheeasy-x.x.x.tar.bz2 22 | 23 | ## 2. Configuration 24 | Enter the cacheeasy directory, modify the conf/cacheeasy.conf, provide the **server_name** value, in generally, it's the IP of the machine you running CacheEasy. 25 | 26 | eg. 27 | 28 | server_name = 10.3.4.5 29 | 30 | ## 3. Start 31 | 32 | ./control.sh start 33 | 34 | ## 4. Visit 35 | Open your browser and visit 36 | 37 | http://server_name:7800 38 | 39 | -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- 1 | # CacheEasy 2 | 3 | **CacheEasy**是一款redis私有云平台软件,利用CacheEasy可以高效、可靠的维护大量redis服务。 4 | 5 | # 特性 6 | 7 | + 支持经典的redis standalone模式和集群版的redis cluster模式 8 | + 自动采用redis sentinel实现redis standalone模式的高可用部署 9 | + 集成高性能、全特性的redis代理软件[predixy](https://github.com/joyieldInc/predixy)。让客户端无需关心redis的部署模式,轻松访问服务。 10 | + 依托predixy的强大功能,支持主从读写分离、全节点scan命令、多密码认证读写权限控制等。 11 | + 高效创建、部署redis服务,轻松扩容、缩容。 12 | + 集成时间序列数据采集存储工具[prometheus](https://prometheus.io/),自动采集各种metrics数据。 13 | + 集成专业的metrics图形化展示工具[grafana](https://grafana.com/),可视化的展示采集的各种数据,几十个dashboard页面无缝集成,上百种指标让你对服务状态了如指掌,追查问题得心应手。 14 | + 内置报警监控系统,全面监控服务运行状态,出现问题及时发出通知报警。 15 | + 使用简单方便,解压即用,无需root权限。 16 | 17 | # 快速开始 18 | 19 | ## 1. 安装 20 | 直接解压获取到的[压缩包](https://github.com/joyieldInc/cacheeasy/releases)即可. 21 | 22 | tar jxvf cacheeasy-x.x.x.tar.bz2 23 | 24 | ## 2. 配置 25 | 解压后进入cacheeasy目录,修改conf/cacheeasy.conf文件,提供**server_name**值, 一般直接填入当前运行CacheEasy服务的机器IP即可. 26 | 27 | 例如: 28 | 29 | server_name = 10.3.4.5 30 | 31 | ## 3. 启动 32 | 33 | ./control.sh start 34 | 35 | ## 4. 访问服务 36 | 打开浏览器访问以下地址进入平台 37 | 38 | http://server_name:7800 39 | 40 | # 详细使用说明 41 | 42 | [使用说明](https://github.com/joyieldInc/cacheeasy/wiki/CacheEasy%E4%B8%AD%E6%96%87%E4%BD%BF%E7%94%A8%E8%AF%B4%E6%98%8E) 43 | -------------------------------------------------------------------------------- /doc/cacheeasy-redis私有云平台.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/doc/cacheeasy-redis私有云平台.pptx -------------------------------------------------------------------------------- /doc/cluster_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/doc/cluster_arch.png -------------------------------------------------------------------------------- /doc/sentinel_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/doc/sentinel_arch.png -------------------------------------------------------------------------------- /help/en/add_inst_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/add_inst_dialog.png -------------------------------------------------------------------------------- /help/en/add_machines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/add_machines.png -------------------------------------------------------------------------------- /help/en/add_machines_more_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/add_machines_more_options.png -------------------------------------------------------------------------------- /help/en/chpwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/chpwd.png -------------------------------------------------------------------------------- /help/en/cluster_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/cluster_delete.png -------------------------------------------------------------------------------- /help/en/cluster_group_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/cluster_group_action.png -------------------------------------------------------------------------------- /help/en/cluster_group_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/cluster_group_config.png -------------------------------------------------------------------------------- /help/en/cluster_group_topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/cluster_group_topology.png -------------------------------------------------------------------------------- /help/en/cluster_insts_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/cluster_insts_action.png -------------------------------------------------------------------------------- /help/en/cluster_mod_alert_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/cluster_mod_alert_template.png -------------------------------------------------------------------------------- /help/en/cluster_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/cluster_overview.png -------------------------------------------------------------------------------- /help/en/cluster_reshard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/cluster_reshard.png -------------------------------------------------------------------------------- /help/en/clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/clusters.png -------------------------------------------------------------------------------- /help/en/clusters_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/clusters_overview.png -------------------------------------------------------------------------------- /help/en/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/content.png -------------------------------------------------------------------------------- /help/en/custom_add_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/custom_add_cluster.png -------------------------------------------------------------------------------- /help/en/custom_add_cluster_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/custom_add_cluster_example.png -------------------------------------------------------------------------------- /help/en/deploy_agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/deploy_agents.png -------------------------------------------------------------------------------- /help/en/deploy_insts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/deploy_insts.png -------------------------------------------------------------------------------- /help/en/home_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/home_empty.png -------------------------------------------------------------------------------- /help/en/join_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/join_cluster.png -------------------------------------------------------------------------------- /help/en/join_cluster_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/join_cluster_task.png -------------------------------------------------------------------------------- /help/en/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/login.png -------------------------------------------------------------------------------- /help/en/machine_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/machine_manage.png -------------------------------------------------------------------------------- /help/en/machine_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/machine_overview.png -------------------------------------------------------------------------------- /help/en/machines_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/machines_action.png -------------------------------------------------------------------------------- /help/en/machines_cond_seach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/machines_cond_seach.png -------------------------------------------------------------------------------- /help/en/machines_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/machines_manage.png -------------------------------------------------------------------------------- /help/en/machines_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/machines_overview.png -------------------------------------------------------------------------------- /help/en/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/nav.png -------------------------------------------------------------------------------- /help/en/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/path.png -------------------------------------------------------------------------------- /help/en/quick_add_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/quick_add_cluster.png -------------------------------------------------------------------------------- /help/en/quick_add_cluster_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/quick_add_cluster_example.png -------------------------------------------------------------------------------- /help/en/redis_cluster_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/en/redis_cluster_manage.png -------------------------------------------------------------------------------- /help/zh/add_inst_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/add_inst_dialog.png -------------------------------------------------------------------------------- /help/zh/add_machines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/add_machines.png -------------------------------------------------------------------------------- /help/zh/add_machines_more_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/add_machines_more_options.png -------------------------------------------------------------------------------- /help/zh/chpwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/chpwd.png -------------------------------------------------------------------------------- /help/zh/cluster_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/cluster_delete.png -------------------------------------------------------------------------------- /help/zh/cluster_group_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/cluster_group_action.png -------------------------------------------------------------------------------- /help/zh/cluster_group_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/cluster_group_config.png -------------------------------------------------------------------------------- /help/zh/cluster_group_topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/cluster_group_topology.png -------------------------------------------------------------------------------- /help/zh/cluster_insts_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/cluster_insts_action.png -------------------------------------------------------------------------------- /help/zh/cluster_mod_alert_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/cluster_mod_alert_template.png -------------------------------------------------------------------------------- /help/zh/cluster_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/cluster_overview.png -------------------------------------------------------------------------------- /help/zh/cluster_reshard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/cluster_reshard.png -------------------------------------------------------------------------------- /help/zh/clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/clusters.png -------------------------------------------------------------------------------- /help/zh/clusters_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/clusters_overview.png -------------------------------------------------------------------------------- /help/zh/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/content.png -------------------------------------------------------------------------------- /help/zh/custom_add_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/custom_add_cluster.png -------------------------------------------------------------------------------- /help/zh/custom_add_cluster_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/custom_add_cluster_example.png -------------------------------------------------------------------------------- /help/zh/deploy_agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/deploy_agents.png -------------------------------------------------------------------------------- /help/zh/deploy_insts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/deploy_insts.png -------------------------------------------------------------------------------- /help/zh/home_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/home_empty.png -------------------------------------------------------------------------------- /help/zh/join_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/join_cluster.png -------------------------------------------------------------------------------- /help/zh/join_cluster_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/join_cluster_task.png -------------------------------------------------------------------------------- /help/zh/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/login.png -------------------------------------------------------------------------------- /help/zh/machine_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/machine_manage.png -------------------------------------------------------------------------------- /help/zh/machine_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/machine_overview.png -------------------------------------------------------------------------------- /help/zh/machines_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/machines_action.png -------------------------------------------------------------------------------- /help/zh/machines_cond_seach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/machines_cond_seach.png -------------------------------------------------------------------------------- /help/zh/machines_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/machines_manage.png -------------------------------------------------------------------------------- /help/zh/machines_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/machines_overview.png -------------------------------------------------------------------------------- /help/zh/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/nav.png -------------------------------------------------------------------------------- /help/zh/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/path.png -------------------------------------------------------------------------------- /help/zh/quick_add_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/quick_add_cluster.png -------------------------------------------------------------------------------- /help/zh/quick_add_cluster_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/quick_add_cluster_example.png -------------------------------------------------------------------------------- /help/zh/redis_cluster_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyieldInc/cacheeasy/6ba038aca7ab273e9cccac79136e8b87cfb9dc5a/help/zh/redis_cluster_manage.png --------------------------------------------------------------------------------