First, the direct installation
1.Windows version of Redis: https://github.com/dmajkic/redis/downloads , select a version you want to download and download it ~
2. Unzip the corresponding version according to your operating system, Win7 64-bit decompression results are as follows:
Redis-server.exe: Service Program
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.
Redis-cli.exe: After the server is turned on, our clients can enter various commands to test
REDIS.CONF: Default service profile, primary: Default port number: 6379
3. Install Redis:
1. Run command line CMD, run as Administrator, go to the F-Disk Redis folder, run redis-server.exe redis.conf start service, do not close this window.
2. Open a command line, follow the above steps to enter the Redis folder, use the Redis-cli.exe-h server ip–p port to test whether the service is open successfully, whether you can connect to Redis
The 3.ok test was successful.
Ii. installation in the form of Windows services
1. Redis Service installation software: https://github.com/rgl/redis/downloads , install after download
2. Find Redis Server service startup
3, after the installation of the natural Redis client also installed (install directory found REDIS-CLI)
4. Testing
5. Verification
About Redis II