Download address:https://github.com/MSOpenTech/redis/releases.
Redis supports 32-bit and 64-bit. This needs to be selected according to the actual situation of your system platform. Here we download the Redis-x64-xxx.zip compressed package to the C drive. After decompression, rename the folder to redis.
Open the folder with the following content:
Open a cmd window using the cd command Change directory to C:\redis Run:
redis-server.exe redis.windows.conf
If you want convenience, you can add the redis path to the system environment variable, so that you don't have to enter the path again. The following redis.windows.conf can be omitted. If omitted, the default one will be enabled. After inputting, the following interface will be displayed:
At this time, open another cmd window. Do not close the original one, otherwise you will not be able to access the server.
Switch to the redis directory and run:
redis-cli.exe -h 127.0.0.1 -p 6379
Set the key-value pair:
set myKey abc
Remove the key-value pair:
get myKey
For more Redis-related technical articles, please visit the Redis Tutorial column to learn!
The above is the detailed content of How to download redis. For more information, please follow other related articles on the PHP Chinese website!