Installation and use of Redis
Download links for 1.Redis: Https://github.com/ServiceStack/redis-windows
Download the compressed Package Redis-windows-master.zip
After decompression find the->downloads folder, select the latest installation package decompression. My newest installation package here is redis64-3.0.501.zip.
The installation package will be unpacked to see the files in the image below.
The use and installation of Redis already has the giant to pave the way for us, the following directly gives the address of the blog, thanks to the two bloggers, from the two series learned a lot.
1. http://www.cnblogs.com/knowledgesea/category/722602.htm
2. http://blog.csdn.net/qiujialongjjj/article/category/1800171
2. To install Redis as a Windows service, the first step is complete.
The installation process is as follows:
(1): Copy the file to, to press the directory, I was to copy it to C:\Program Files\redis.
(2): Open the cmd Command window with administrator privileges and switch to the directory where we just copied the file
CD C:\Program Files\redis
Then execute this statement
Redis-server.exe--service-install redis.windows.conf
Open the Services in Control Panel, management tools, and see if there is a Redis service in the list of services. If it is not started, turn it on.
(3): Open the Redis Client Action window and double-click Redis-cli.exe.
Input
Set Redisdemo First
Return to OK
Enter Get Redisdemo
Return to "first"
Description Redis installed as a Windows service has succeeded
Finally, students who are unfamiliar with Redis can take a look at the two posts recommended below
1. http://www.cnblogs.com/knowledgesea/category/722602.htm
2. http://blog.csdn.net/qiujialongjjj/article/category/1800171
Back to navigation bar
. Net sites in the Windows environment with Nginx and Redis for load Balancing series (ii)