window redis php 安裝

來源:互聯網
上載者:User

標籤: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 安裝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.