Another Redis Desktop Manager est un gestionnaire de bureau Redis plus rapide, meilleur et plus stable, compatible avec Linux, Windows et Mac. De plus, il ne plante pas lors du chargement d'un grand nombre de clés.
Ces installations de logiciels et d'outils sont très simples et faciles à utiliser.
1. Installation Mac ou 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
Si le message d'erreur suivant apparaît, le responsable propose également une solution plus réfléchie.
# 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. Installation de 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
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!