REmote DIctionary Server (Redis) is a key-value storage system written by Salvatore Sanfilippo.
Redis is an open source log-type Key-Value database written in ANSI C language, abides by the BSD protocol, supports the network, can be memory-based and persistent, and provides APIs in multiple languages.
(Learning video sharing: redis video tutorial)
It is often called a data structure server, because the value (value) can be a string (String), ha Types such as Hash, list, sets and sorted sets.
Download
https://github.com/MicrosoftArchive/redis/releases/download/win-3.0.504/Redis-x64-3.0.504.msi
Download the installation package and go all the way to next. After installation, enter the installation directory (default is C:\Program Files\Redis), find redis.windows.conf and open it with notepad, press Ctrl f, find the requirepass parameter, and set the password:
Open cmd, enter the Redis installation directory, run
redis-server.exe redis.windows.conf
If a 1688 error occurs, enter
redis-cli.exe shutdown exit
and run redis-server.exe redis.windows .conf
# After the installation is complete, close cmd, find the Redis item in the Windows service, and set the startup type to automatic.
If error 1067 is reported, you can refer to this tutorial https://blog.csdn.net/maxsky/article/details/79775118
Install Redis Desktop Manager
Download link: https://pan.baidu.com/s/1NJlCZNGRKOMh96kMemHjew Extraction code: qqxi
The installation is also all the way next. Setting up the link
First make sure that the redis service is turned on.
Open Redis Desktop Manager
##After clicking OK, you can see the created connection. Double-click it to check the detail information. The installation of Redis is now complete. Related recommendations:The above is the detailed content of Redis installation tutorial for beginners (win10). For more information, please follow other related articles on the PHP Chinese website!