下載redis服務:https://github.com/ServiceStack/redis-windows/tree/master/downloadsphp
我下載的是這個版本git
如今只需雙擊 redis-server.exe 便可開啓 redis 服務,以下圖所示的話即開啓成功,接下來就能夠雙擊 redis-cli.exe 進行測試,測試結果以下圖所示:github
到這裏只是在 windows 系統安裝了 redis ,可是要在代碼裏使用 redis 的話,還須要給 php 加上擴展,須要下載 redis.dll 和 igbinary.dll ,須要注意如下要素:redis
先在phpinfo中查看本身的php版本:apache
接着到 redis 庫下載地址:https://windows.php.net/downloads/pecl/releases/redis/ 以及 igbinary 庫的下載地址:https://windows.php.net/downloads/pecl/releases/igbinary/ 選擇適應版本。
windows
下載完成後將兩個壓縮包分別解壓後獲取 php_redis.dll 和 php_igbinary.dll ,將其移到 php 擴展目錄 ext 目錄下,路徑:(D:\wamp64)wamp安裝目錄\bin\php\php5.6.25\ext。測試
再到 php.ini 【(D:\wamp64)wamp安裝目錄\bin\apache\apache2.4.23\bin】裏配置剛纔添加的擴展模塊:spa
文件末尾加上(注意:extension=php_igbinary.dll必定要放在extension=php_redis.dll的前面,不然此擴展不會生效,由於後者依賴前者):.net
extension=php_igbinary.dll
extension=php_redis.dll
重啓 wamp 全部服務,再查看 phpinfo 信息,發現如下截圖上多了 redis 擴展模塊表明成功配置了 php 的 redis 擴展模塊。
3d
最後再測試一下,記得打開 redis-server.exe 服務,新建 php 文件測試以下:
<?php $redis = new Redis(); //實例化redis $redis->connect('127.0.0.1', '6379'); //創建redis服務鏈接 $redis->set('user', 'zrn111'); //設置變量和變量值 echo $redis->get('user'); //獲取變量值 $redis->close(); //關閉redis鏈接
結果:
這樣redis的擴展就裝完了。