標籤:
第一步redis安裝:
1、首先確認下載包為64位的還是32位的
2、下載http://code.google.com/p/servicestack/downloads
3、解壓下載包得到以下檔案:
cygwin1.dll
redis-benchmark.exe //效能測試,用以類比同時N個用戶端發送M個sets/gets查詢
redis-check-aof.exe //更新日誌檢查
redis-check-dump.exe //本機資料庫檢查
redis-cli.exe
redis-server.exe 服務程式
redis.conf 設定檔
4、解壓好的安裝檔案放到D盤目錄後,檔案夾改名為redis(方便下面講解),配置redis.conf,(先不做配置,預設就好)
5、啟動redis
開啟cmd視窗,輸入命令:
開啟 redis 命令
redis-server.exe redis.windows.conf
1)d:
cd redis //到redis目錄下,也可將redis添加系統變數中
2)redis-server.exe redis.conf
開啟redis成功,
6、另起一cmd視窗輸入命令:
redis-cli.exe -h 127.0.0.1 -p 6379
下面就可在此視窗進行測試:
輸入: set key1 HelloWorld
get key1
如果輸出:HelloWorld 表示你的redis已經安裝成功了
開啟命令 redis-server.exe redis.windows.conf
下面進行第二步:php擴充Redis功能, 下載https://github.com/nicolasff/phpredis/downloads
1 首先,查看所用php編譯版本V6/V9 在phpinfo()中查看
我的是MSVC9(Visual C++ 2008)所以下載的是 phpredis_5.4_vc9_ts.7z
2 將下載的php_igbinary.dll、php_redis.dll放在php擴充目錄中(ext),並修改設定檔php.ini
extension=php_igbinary.dll
extension=php_redis.dll
3 重新啟動服務,查看phpinfo(),找到以下內容表示成功;
redis
Redis Support enabled
Redis Version 2.2.3
4 用PHP測試
<?php
phpinfo();
$redis = new Redis();
$redis->connect("127.0.0.1","6379");
$redis->set("key1","Hello world");
echo $redis->get("key1");
?>
5:php 操作reds命令 http://www.cnblogs.com/jackluo/p/3412670.html
6:Redis命令中文文檔:http://redisdoc.com/
Redis簡單幾步