Redis簡單幾步

來源:互聯網
上載者:User

標籤:

第一步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簡單幾步

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.