How to install Redis?
Install under Window
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;
Open a cmd window and use the cd command to switch directories to C:\redis and run:
redis-server.exe redis.windows.conf
If you want If it is convenient, 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 knowledge, please visit the Redis usage tutorial column!
The above is the detailed content of How to install Redis. For more information, please follow other related articles on the PHP Chinese website!