Sungeek
Source: http://www.cnblogs.com/Sungeek/
Welcome to reprint, please also keep this paragraph statement. Thank you!
Brief introduction:
Redis is an open source, Key-value database that is written in ANSI C language, supports the network, can be persisted based on memory,
and provides APIs in multiple languages. From March 15, 2010 onwards, the development work of Redis is hosted by VMware. Since May 2013, the development of Redis has been sponsored by pivotal.
1. Turn on and configure Redis
①. First to download Redis:
Http://redis.io/download This is the official website download the corresponding version of the address download,
After downloading the decompression:
File Description:
Redis-benchmark.exe #基准测试
Redis-check-aof.exe # AOF
Redischeck-dump.exe # Dump
Redis-cli.exe # Client
Redis-server.exe # Server
REDIS.CONF # configuration file
②. Windows run (shortcut key: Windows key +r), enter the "cmd" command to enter the Doc OS window.
First go to your Redis unzip in which disk, for example my is D disk: (see)
Use the command "Redis-server.exe redis.conf" to start the Redis service
2. Test if Redis is turned on successfully
Open a DOS again,
To access the Redis unzipped hard drive directory, run the following command:
Enter the client command: Redis-cli.exe,
Again set key value, [Key=age, Value=18]
Then get age, you get a key value,
Note: If you run an error, the Property compatibility permission (run as Administrator).
Windows7 Installation Redis tutorial and configuration detailed