Window under Installation
:https://github.com/MSOpenTech/redis/releases
Redis supports 32-bit and 64-bit. This needs to be based on the actual situation of your system platform to choose, here we download redis-x64-xxx.zip Compressed package to D:\Development_Tools\Redis.
After the installation is complete, there will probably be several files under the installation directory :
Redis-server.exe: Service-side program, providing REDIS services
Redis-cli.exe: A client program that connects and operates with Redis services
Redis-check-dump.exe: Local Database check
Redis-check-aof.exe: Update log check
Redis-benchmark.exe: Performance test to simulate the simultaneous sending of M-Sets/gets queries by n clients (similar to the Apache AB tool).
Redis.windows.conf: Configuration file, using Redis as a configuration for normal software, command line off, Redis off
REDIS.WINDOWS-SERVICE.CONF: Configuration file that uses Redis as a system service configuration to differentiate between two different ways of using
View and modify redis configuration file See : http://www.cnblogs.com/ningskyer/articles/5730611.html
Open cmd window using CD command to switch directories to D:\Development_Tools\Redis run
* Note: The Redis path can be added to the environment variables of the system, so as to save the lost path, the latter redis.windows.conf can be omitted, if omitted, the default is enabled.
After entering, the following interface is displayed:
At this time another cmd window, the original do not close, otherwise you will not be able to access the server.
Installation Services :
Redis-server--service-install redis.windows.conf
OK, done, check the local service, is not joined Redis.
Start the service (Redis does not start after installing the service):
Redis-server--service-start
Stop service :
Redis-server--service-stop
Test:
Switch to Redis directory to run
127.0. 0.1 6379
Set the key-value pair set MyKey ABC
Remove key value pair get MyKey
Introducing a handy Redis visualizer: Redis Desktop Manager
: Https://redisdesktop.com/download
Reference article 1:http://www.runoob.com/redis/redis-install.html
Reference article 2:http://www.cnblogs.com/ningskyer/articles/5730611.html
Installing Redis under WIN10