Tool download location: HTTP://PAN.BAIDU.COM/S/1HQVH1F2, including server-side configuration and tools to view the cache.
The server runs as a service, extracts the Redis server to a directory, and executes the cmd command:
Redis-server.exe--service-install redis.windows.conf--loglevel verbose
Note, modify the Redis port and password configuration in file redis.windows-service.conf: ( Extract files using Redis284.rar )
Modify the port, the compressed file is configured with 6488:
Change Password
Modify the number of libraries
After the configuration is complete, execute
Redis-server.exe--service-install redis.windows.conf--loglevel verbose
The service was installed successfully.
Tool configuration, after installation as
Once the connection is successful, you can view the data in the cache
The above is to install Redis as a service, and the service will run automatically each time the computer starts.
====================================================
If you are not running as a service, use the following method to run a service each time a Redis service is required:
compressing files with Redis64-2.6.12.1.rar
First Step (configure local Service)Click Run to execute this DOS commandbecause it is their own computer testing, so this redis default port we do not have to modify, if the official server, it is necessary to modify the port number, to prevent hackers, to obtain your data, after all, information security is important, can be modified by its configuration filelook under the notepad++ open the configuration file, modified, here I changed to 6380 this portThis is the change, as long as the port is changed, and then start run to find that the port number has indeed changed, the first step has been completed. Part II (Installing and Configuring the client)
The "Redis-desktop-manager-0.8.2.3849.exe" in the file is a client installation package that was downloaded from the Redis website in 2015-11-23, and if there is an update you can go to the official website to download the latest Redis, which is the link: http://redis.io/
1. Click on the client Installer, next ...., finish opening the client interface on it, omit the installation.
2. Open the interface, the client defaults to read to 6379 of the port, will create a 6379 Redis server
Since I changed the port number of 6379, the default creation of the localhost server by the Redis client was unsuccessful, just right click to modify the port number.
This configuration, it means that your Redis server has been successfully configured on your computer, from the official website to download the latest C # version of the DLL reference to its own project can begin to operate.
How to configure Redis Service in window environment and the tools for viewing cached data