標籤:blog http io os 使用 ar strong 檔案 資料
1.下載redis的win版用戶端
: http://code.google.com/p/servicestack/wiki/RedisWindowsDownload
2.選擇32bit,64bit安裝
redis-server.exe:服務程式
redis-check-dump.exe:本機資料庫檢查
redis-check-aof.exe:更新日誌檢查
redis-benchmark.exe:效能測試,用以類比同時由N個用戶端發送M個 SETs/GETs 查詢 (類似於 Apache 的ab 工具).
redis.conf 設定檔
3.從dos進入安裝目錄運行redis-server.exe redis.conf
4.啟動cmd視窗要一直開著,關閉後則Redis服務關閉。另開一視窗,串連reids伺服器
redis-cli.exe -h 202.117.16.133 -p 6379
6.php增加reids擴充
6.1、先下載 phpredis.dll擴充包。: https://github.com/nicolasff/phpredis/downloads
用phpinfo 查看到時TS vc9。那麼下載的版本就對應好
ts版 phpredis_5.4_vc9_ts.7z nts版 phpredis_5.4_vc9_nts.7z
2、解壓縮之後得到兩個檔案,分別將兩個檔案複製到php 目錄的 ext目錄下。
3、修改php.ini檔案。加入extension 擴充
extension=php_igbinary.dll
extension=php_redis.dll
4、 重啟apache ,查看phpinfo 介面。如下則表示安裝成功
5、phpredis hellow word 開始你的redis使用
<?php $redis = new Redis(); //redis對象 $redis ->connect( "192.168.60.6" , "6379" ); //串連redis伺服器 $redis ->set( "test" , "Hello World" ); //set字串值 echo $redis ->get( "test" ); //擷取值 ?> |
window redis php 安裝