W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
先在這里感謝phalapi框架創(chuàng)始人@dogstar,為我們提供了這樣一個(gè)優(yōu)秀的開源框架.
編寫本次拓展出于的目的是為了解決并不是非常熟悉redis的童鞋能夠方便的使用redis進(jìn)行實(shí)際的運(yùn)用
,對(duì)原生的phpredis進(jìn)行的封裝優(yōu)化良好的注釋和例子希望能提供更好的幫助!
注:本拓展并沒有開發(fā)完成,也沒進(jìn)行嚴(yán)格的測(cè)試,此版本為還處于開發(fā)階段的鑒賞版.
附上:
官網(wǎng)地址:http://www.phalapi.net/
開源中國(guó)Git地址:http://git.oschina.net/dogstar/PhalApi/tree/release
基于centos6.5
//下redis解壓安裝 wget http://download.redis.io/releases/redis-2.8.17.tar.gz tar zxvf redis-2.8.17.tar.gz cd redis-2.8.17 make make test make install //生成6379端口以及配置文件 cd utils ./install_server.sh Please select the redis port for this instance: [6379] Please select the redis config file name [/etc/redis/6379.conf] Please select the redis log file name [/var/log/redis_6379.log] Please select the data directory for this instance [/var/lib/redis/6379] Please select the redis executable path [/usr/local/bin/redis-server] //對(duì)配置文件進(jìn)行配置 vi /etc/redis/6379.conf databases 100 #可以使用的庫的數(shù)量修改16為100 masterauth xxxxxxxxxxxxx #連接 master 的認(rèn)證密碼 requirepass woyouwaimai76 #連接此redis的連接密碼 :wq //修改關(guān)閉redis需要密碼 vi /etc/rc.d/init.d/redis_6379 $CLIEXEC -p $REDISPORT -a woyouwaimai76 shutdown #stop redis需要密碼 //重啟redis service redis_6379 restart //添加到系統(tǒng)啟動(dòng)項(xiàng) chkconfig redis_6379 on //下載phpredis解壓安裝 wget https://github.com/nicolasff/phpredis/archive/master.zip unzip master.zip -d phpredis cd phpredis/phpredis-master phpize ./configure make && make install //在php.ini中注冊(cè)phpredis extension = redis.so //測(cè)試 <?php $auth = 'xxxxxxxxx'; $source = '127.0.0.1'; $host = '6379'; $redis = new Redis(); echo $redis->connect($host) ? "$host connect" : "$host fail"; if($auth){ echo $redis->auth($auth) ? " auth success" : " auth fail"; }
return array( //Redis配置項(xiàng) 'redis' => array( //Redis緩存配置項(xiàng) 'servers' => array( 'host' => '127.0.0.1', //Redis服務(wù)器地址 'port' => '6379', //Redis端口號(hào) 'prefix' => 'developers_', //Redis-key前綴 'auth' => 'woyouwaimai76', //Redis鏈接密碼 ), // Redis分庫對(duì)應(yīng)關(guān)系 'DB' => array( 'developers' => 1, 'user' => 2, 'code' => 3, ), //使用阻塞式讀取隊(duì)列時(shí)的等待時(shí)間單位/秒 'blocking' => 5, ), );
配置方式非常簡(jiǎn)單只需要把拓展下載下來放入Library文件內(nèi)即可,然后就可以使用如下方法進(jìn)行實(shí)例
//redis鏈接 DI()->redis = new Redis_Lite(DI()->config->get('app.redis.servers'));
//存入永久的鍵值隊(duì) DI()->redis->set_forever(鍵名,值,庫名); //獲取永久的鍵值隊(duì) DI()->redis->get_forever(鍵名, 庫名); //存入一個(gè)有時(shí)效性的鍵值隊(duì),默認(rèn)600秒 DI()->redis->set_Time(鍵名,值,有效時(shí)間,庫名); //獲取一個(gè)有時(shí)效性的鍵值隊(duì) DI()->redis->get_Time(鍵名, 庫名); //寫入隊(duì)列左邊 DI()->redis->set_Lpush(隊(duì)列鍵名,值, 庫名); //讀取隊(duì)列右邊 DI()->redis->get_lpop(隊(duì)列鍵名, 庫名); //讀取隊(duì)列右邊 如果沒有讀取到阻塞一定時(shí)間(阻塞時(shí)間或讀取配置文件blocking的值) DI()->redis->get_Brpop(隊(duì)列鍵名,值, 庫名); //刪除一個(gè)鍵值隊(duì)適用于所有 DI()->redis->del(鍵名, 庫名); //自動(dòng)增長(zhǎng) DI()->redis->get_incr(鍵名, 庫名); //切換DB并且獲得操作實(shí)例 DI()->redis->get_redis(鍵名, 庫名);
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: