Window under Installation
:https://github.com/dmajkic/redis/downloads.
Redis supports 32bit and 64bit to download. Depending on your actual situation, select the 64bit content CP to the custom drive letter installation directory named Redis. such as C:\reids
Open a CMD window using the CD command to switch directories to C:\redis run redis-server.exe redis.conf .
If you want to be convenient, you can add the path of Redis to the environment variables of the system, so as to save the path again, the latter redis.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.
Switch to the Redis directory to run the redis-cli.exe-h 127.0.0.1-p 6379 .
Set the key-value pair set MyKey ABC
Remove key value pair get MyKey
This time the command line has been tested successfully, next Test Redis in PHP code
<?php
$redis = new Redis (); Instantiating Redis
$redis->pconnect (' 127.0.0.1 ', ' 6379 '); Establishing a Redis service connection
$redis->set ($key, $value); Setting variables and variable values
$redis->get ($key); Get variable Value
$redis->close (); Turn off Redis connections
?>
This time you may not enter anything, this is because you have not installed the Phpredis extension;
Redis is an open source API that is written in ANSI C, supports the web, can be persisted in memory, key-value databases, and provides multiple languages. It can support multi-language development such as Java,c/c++,c#,php,javascript,perl,object-c,python,ruby,erlang. I installed the Redis service under Windows. Use is good, installation of the time encountered some problems. Now share the operation I have installed to everyone. PHP-Operated
Then it's time to configure the PHP environment.
First download a php_redis.dll extension file, php_redis.dll:http://windows.php.net/downloads/pecl/snaps/redis/2.2.5/(PHP version, Otherwise it may not be possible). Put it in the PHP extension directory ext, and then add it in the php.ini
Extension=php_igbinary.dll
Extension=php_redis.dll
(Do not switch in order). Then restart the server. Access Phpinfo () in PHP file
If it can appear
Having this module proves that you have successfully installed it.
Then start the Redis service
When this starts, it proves that you can use the program to access it.
$redis = new Redis (); Instantiating Redis
$redis->pconnect (' 127.0.0.1 ', ' 6379 '); Establishing a Redis service connection
$redis->set ($key, $value); Setting variables and variable values
$redis->get ($key); Get variable Value
$redis->close (); Turn off Redis connections
Basically, you can use Redis to do something.
It's just a summary of my own when I look at Redis, and if anything is wrong, please correct me.
Installing Redis under Windows and Testing (PHP)