默认标题_公众号封面首图_2022-06-21+05_20_51.png
    对于客户端可视化管理工具,MySql 有 Workbench,MongoDB 有 Robo 3T,那么 Redis 用什么呢?

    Redis 在项目开发中也是一个普遍使用的数据库了,如果想在客户端查看一些数据,命令行的方式使用起来难免会繁琐,推荐一个使用 Node.js 开发的 Redis 客户端可视化管理工具 Another Redis DeskTop Manager。

    来自官网的介绍:

    Another Redis Desktop Manager 是一个更快,更好,更稳定的 Redis 桌面管理器,与 Linux,Windows 和 Mac 兼容,性能出众,轻松加载海量键值。

    该项目是开源的,可以免费使用,截至目前 Github 标星 21.2k+。

    image.png

    安装包下载地址:https://github.com/qishibo/AnotherRedisDesktopManager/releases

    如果电脑安装了 Node.js 环境,也可以在本地启动:

    1. # clone code
    2. git clone https://github.com/qishibo/AnotherRedisDesktopManager.git --depth=1
    3. cd AnotherRedisDesktopManager
    4. # install dependencies
    5. npm install
    6. # if download electron failed during installing, use this command
    7. # ELECTRON_MIRROR="https://npm.taobao.org/mirrors/electron/" npm install
    8. # serve with hot reload at localhost:9988
    9. npm start
    10. # after the previous step is completed, open another tab, build up a desktop client
    11. npm run electron