1. Installing Redis
1.1 Download the installation package https://github.com/ServiceStack/redis-windows#3-run-the-redis-serverexe-using-the-local-configuration
1.2 After the release select the Redis version to install
1.3 After you release this version, you can see that Redis-server.exe and Redis-cli.exe represent the server and the client respectively.
2. Installing the Phpredis Extension
2.1 View your PHP version information, download the appropriate extension
Https://github.com/nicolasff/phpredis
http://windows.php.net/downloads/pecl/snaps/redis/2.2.5/
2.2 Downloaded php_igbinary.dll and Php_redis.dll into PHP's ext directory
2.3 Modifying the configuration file php.ini
- Extension=php_igbinary. DLL
- Extension=Php_redis. DLL
2.4 Restart Apache to view phpinfo information on Redis extensions
Basic--redis installation in a Windows environment