下载
官网下载地址:http://redis.io/download
github下载地址:https://github.com/MSOpenTech/redis/tags
安装 Redis
-  这里下载的是 Redis-x64-3.2.100.zip ,解压到 redis目录  
-  启动 redis 
 执行命令redis-server redis.windows.conf
 出现下图就启动成功了
  
设置 Reids 服务
执行命令 redis-server --service-install redis.windows-service.conf --loglevel verbose
 将Redis添加到服务列表中
 
常用的 Redis 服务命令
-  Uninstalling the Service 
 redis-server --service-uninstall
-  Starting the Service 
 redis-server --service-start
-  Stopping the Service 
 redis-server --service-stop
-  Naming the Service redis-server --service-install --service-name redisService1 --port 10001 redis-server --service-start --service-name redisService1 redis-server --service-install --service-name redisService2 --port 10002 redis-server --service-start --service-name redisService2 redis-server --service-install --service-name redisService3 --port 10003 redis-server --service-start --service-name redisService3
为 PHP5.6 安装 Redis 扩展
下载 php_redis.dll 和 php_igbinary.dll
http://windows.php.net/downloads/pecl/releases/redis/
http://windows.php.net/downloads/pecl/releases/igbinary/
扩展类型选择
 
我的电脑配置是 php5.6,x86,ts(Thread Safety),VC11
 所以下载的是 php_redis-2.2.7-5.6-ts-vc11-x64.zip 和 php_igbinary-2.0.5-5.6-ts-vc11-x86.zip  
 
解压缩后把 php_igbinary.dll 和 php_redis.dll 拷贝到 php 的 ext 目录下

修改 php.ini 文件,在文件末尾添加
; php_redis
extension=php_igbinary.dll
extension=php_redis.dll
重启 apache 服务,查看扩展有没有成功
