對于客戶端可視化管理工具,MySql 有 Workbench,MongoDB 有 Robo 3T,那么 Redis 用什么呢?
Redis 在項(xiàng)目開發(fā)中也是一個(gè)普遍使用的數(shù)據(jù)庫了,如果想在客戶端查看一些數(shù)據(jù),命令行的方式使用起來難免會(huì)繁瑣,推薦一個(gè)使用 Node.js 開發(fā)的 Redis 客戶端可視化管理工具 Another Redis DeskTop Manager。
來自官網(wǎng)的介紹:
Another Redis Desktop Manager 是一個(gè)更快,更好,更穩(wěn)定的 Redis 桌面管理器,與 Linux,Windows 和 Mac 兼容,性能出眾,輕松加載海量鍵值。
該項(xiàng)目是開源的,可以免費(fèi)使用,截至目前 Github 標(biāo)星 21.2k+。

image.png
安裝包下載地址:https://github.com/qishibo/AnotherRedisDesktopManager/releases
如果電腦安裝了 Node.js 環(huán)境,也可以在本地啟動(dòng):
# clone code
git clone https://github.com/qishibo/AnotherRedisDesktopManager.git --depth=1
cd AnotherRedisDesktopManager
# install dependencies
npm install
# if download electron failed during installing, use this command
# ELECTRON_MIRROR="https://npm.taobao.org/mirrors/electron/" npm install
# serve with hot reload at localhost:9988
npm start
# after the previous step is completed, open another tab, build up a desktop client
npm run electron