侧边栏壁纸
博主头像
爱新觉罗·花泽李

做一个分享快乐的小小网站✨

  • 累计撰写 476 篇文章
  • 累计创建 79 个标签
  • 累计收到 201 条评论

目 录CONTENT

文章目录

🛳Redis桌面(GUI)管理客户端

爱新觉罗·花泽李
2022-08-23 / 0 评论 / 35 点赞 / 771 阅读 / 528 字 / 正在检测是否收录...
温馨提示:
本文最后更新于 2022-10-18,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

官方简介

🚀🚀🚀 更快、更好、更稳定的Redis桌面(GUI)管理客户端,兼容Windows、Mac、Linux,性能出众,轻松加载海量键值。更重要的是,它在加载大量密钥时不会崩溃。

Windows

  • 可以在github 或者 gitee下载exe安装包
  • 或者通过chocolatey:
choco install another-redis-desktop-manager
  • 或者通过winget:
winget install qishibo.AnotherRedisDesktopManager
  • 或者通过Win Store赞助,然后让Win Store帮你自动更新版本microsoft store

Linux

  • 可以在github 或者 gitee下载AppImage包,chmod +x, 双击运行
  • 或者通过snap:
sudo snap install another-redis-desktop-manager

Tips: 如果选择私钥时提示权限不足,执行

sudo snap connect another-redis-desktop-manager:ssh-keys

来获取对~/.ssh文件夹的权限
Snap Store

Mac

  • 通过 brew:
brew install --cask another-redis-desktop-manager

起飞吧!

image-1661222784047
image-1661222789475
image-1661222792888
image-1661222799653

Dev Build

Tips: 此为开发环境,用于运行完整项目,普通用户直接从前面下载安装包即可

Linux Or Mac

# 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 to 100%, open another tab, build up a desktop client
npm run electron
  • If linux errors like this:
# if error like this
../src/FontManagerLinux.cc:1:35: fatal error: fontconfig/fontconfig.h: No such file or directory

# then try this
sudo apt install libfontconfig1-dev

Windows

# install build tools for the first time, just execute once
npm install -g windows-build-tools

# clone code
git clone https://github.com/qishibo/AnotherRedisDesktopManager.git --depth=1
cd AnotherRedisDesktopManager

# install dependencies, 32-bit or 64-bit all use win32
npm install --platform=win32

# if download electron failed during installing, use this command
# npm config set ELECTRON_MIRROR http://npm.taobao.org/mirrors/electron/
# npm install --platform=win32

# serve with hot reload at localhost:9988
npm start


# after the previous step is completed to 100%, open another tab, build up a desktop client
npm run electron
  • Build Package
# prepare before package
npm run pack:prepare

# build package on respective platforms
# on windows build 64bit package
npm run pack:win
# on windows build 32bit package
npm run pack:win32

# on mac
npm run pack:mac

# on linux
npm run pack:linux

作者地址

35

评论区