zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

推荐一些好用的redis周边工具

Redis工具 一些 推荐 好用 周边
2023-09-27 14:20:13 时间

1. Redis可视化工具 Redis Desktop Manager

https://github.com/uglide/RedisDesktopManager

它是一个跨平台的Redis可视化工具,可以直观的看到Redis中数据等。

2. rdb分析工具 redis-rdb-tools

https://github.com/sripathikrishnan/redis-rdb-tools

它是使用python写的一个rdb分析工具,可以轻松分析出redis中的bigkey,轻松找出内存倾斜原因。

其他参考资料:

官方文档中文翻译:

https://blog.csdn.net/zhaohongfei_358/article/details/102524566

安装教程,不会python的小伙伴可以参考:

https://blog.csdn.net/zhaohongfei_358/article/details/102525085

3. 在线迁移工具(集群之间数据同步、迁移)redis-migrate-tool

https://github.com/sripathikrishnan/redis-rdb-tools

该工具可以轻松实现集群之间的数据迁移以及数据同步,并且不影响线上业务,不会造成数据丢失。

其他参考资料:

https://blog.csdn.net/zhaohongfei_358/article/details/102665730

4. 快速在本地Linux搭建Redis集群

https://github.com/IndustriousSnail/create-local-redis-cluster-easily

自己写的一个脚本,用于在本地虚拟机快速搭建一个redis集群。帮助测试上述工具,或者测试一些其他东西。

5. Redis容量预估

http://www.redis.cn/redis_memory/

帮你轻松评估出你可能需要用到的内存量,来估算要搭一个怎样的集群。验证过了,数据挺准的。
在这里插入图片描述

6. CacheCloud

https://github.com/sohutv/cachecloud

CacheCloud提供一个Redis云管理平台:实现多种类型(Redis Standalone、Redis Sentinel、Redis Cluster)自动部署、解决Redis实例碎片化现象、提供完善统计、监控、运维功能、减少运维成本和误操作,提高机器的利用率,提供灵活的伸缩性,提供方便的接入客户端。

在这里插入图片描述

7. Redis监控 Redis Exporter

https://github.com/oliver006/redis_exporter

该项目用于Prometheus监控

8.目前接触这么多,以后再补充