php中如何使用phpredis

安裝redis服務:
下載地址:http://redis.io/download,下載最新文檔版本。
本教程使用的最新文檔版本爲 2.8.17,下載並安裝:php

$ wget http://download.redis.io/releases/redis-2.8.17.tar.gz
$ tar xzf redis-2.8.17.tar.gz
$ cd redis-2.8.17
$ make

make完後 redis-2.8.17目錄下會出現編譯後的redis服務程序redis-server,還有用於測試的客戶端程序redis-cli,兩個程序位於安裝目錄 src 目錄下:
下面啓動redis服務.git

$ cd src
$ ./redis-server

注意這種方式啓動redis 使用的是默認配置。也能夠經過啓動參數告訴redis使用指定配置文件使用下面命令啓動。github

$ cd src
$ ./redis-server redis.conf

redis.conf是一個默認的配置文件。咱們能夠根據須要使用本身的配置文件。
啓動redis服務進程後,就能夠使用測試客戶端程序redis-cli和redis服務交互了。 好比:redis

$ cd src
$ ./redis-cli
redis> set foo bar
OK
redis> get foo
"bar"

安裝PHP redis 驅動
裝 PHP redis 驅動:下載地址爲:https://github.com/nicolasff/phpredis
首先git clone 項目到本地,切換到phpredis目錄下
在shell中輸入 phpize 而後 ./configure 進行配置(ps:可能找不到phpize,phpize是屬於php-devel的內容,所以在centos中只要運行以下命令:yum install php-devel 而後就會安裝上phpize了。)
接下來就是最後的make 和make install了,make 以後記得跑一下 make test,在make install中遇到點權限問題,因此要加上sudo
這樣就完成了phpredis的編譯工做,接下來咱們須要來配置了。shell

而後,在PHP.INI 配置文件中添加一條extension = redis.so 就OKcentos

對了,別忘了重啓Apache測試

相關文章
相關標籤/搜索