1. Download

Download: github.com/tporadowski…

2. The configuration

Unzip to the directory you want to install, then open the folder, shift+ right-click the blank area to open the command window, execute the following command

.\redis-server.exe redis.windows.conf Note: If the command fails to be recognized, delete the front (.\)Copy the code

3. Run

Re-shift + right-click in the Redis directory to open a command window and execute the following command

.\redis-cli.exe -h 127.0.0.1 -p 6379
Copy the code

Enter information by command to test whether it is successful

set myKey abc

get myKey
Copy the code