別の Redis デスクトップ マネージャーは、Linux、Windows、および Mac と互換性のある、より高速で優れた、より安定した Redis デスクトップ マネージャーです。また、多数のキーをロードしてもクラッシュしません。
このようなソフトウェアやツールのインストールは非常にシンプルで、操作も簡単です。
1. Mac または Linux のインストール
# clone code git clone https://github.com/qishibo/AnotherRedisDesktopManager.git 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
次のエラー メッセージが表示された場合、公式は丁寧な解決策も提供しています。
# if error like this ../src/FontManagerLinux.cc:1:35: fatal error: fontconfig/fontconfig.h: No such file or directory # then try this yum install libfontconfig1-dev -y
2. 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 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
以上が別の Redis デスクトップ マネージャーをインストールする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。