redis
我們擁有十多年網(wǎng)頁(yè)設(shè)計(jì)和網(wǎng)站建設(shè)經(jīng)驗(yàn),從網(wǎng)站策劃到網(wǎng)站制作,我們的網(wǎng)頁(yè)設(shè)計(jì)師為您提供的解決方案。為企業(yè)提供成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、外貿(mào)網(wǎng)站建設(shè)、微信開(kāi)發(fā)、小程序定制開(kāi)發(fā)、成都做手機(jī)網(wǎng)站、H5高端網(wǎng)站建設(shè)、等業(yè)務(wù)。無(wú)論您有什么樣的網(wǎng)站設(shè)計(jì)或者設(shè)計(jì)方案要求,我們都將富于創(chuàng)造性的提供專業(yè)設(shè)計(jì)服務(wù)并滿足您的需求。
是一個(gè)key-value存儲(chǔ)系統(tǒng)。和Memcached類似,它支持存儲(chǔ)的value類型相對(duì)更多,包括string(字符串)、list(鏈表)、set(集合)、zset(sorted set --有序集合)和hash(哈希類型)。這些數(shù)據(jù)類型都支持push/pop、add/remove及取交集并集和差集及更豐富的操作,而且這些操作都是原子性的。在此基礎(chǔ)上,redis支持各種不同方式的排序。與memcached一樣,為了保證效率,數(shù)據(jù)都是緩存在內(nèi)存中。區(qū)別的是redis會(huì)周期性的把更新的數(shù)據(jù)寫(xiě)入磁盤或者把修改操作寫(xiě)入追加的記錄文件,并且在此基礎(chǔ)上實(shí)現(xiàn)了master-slave(主從)同步。
本篇文章,主要介紹利用PHP使用Redis,主要的應(yīng)用場(chǎng)景。
簡(jiǎn)單字符串緩存實(shí)戰(zhàn)
$redis->connect('127.0.0.1', 6379);$strCacheKey = 'Test_bihu'; //SET 應(yīng)用$arrCacheData = [ 'name' => 'job', 'sex' => '男', 'age' => '30'];$redis->set($strCacheKey, json_encode($arrCacheData));$redis->expire($strCacheKey, 30); # 設(shè)置30秒后過(guò)期$json_data = $redis->get($strCacheKey);$data = json_decode($json_data); print_r($data->age); //輸出數(shù)據(jù) //HSET 應(yīng)用$arrWebSite = [ 'google' => [ 'google.com', 'google.com.hk' ], ];$redis->hSet($strCacheKey, 'google', json_encode($arrWebSite['google']));$json_data = $redis->hGet($strCacheKey, 'google');$data = json_decode($json_data); print_r($data); //輸出數(shù)據(jù)復(fù)制代碼
簡(jiǎn)單隊(duì)列實(shí)戰(zhàn)
$redis->connect('127.0.0.1', 6379);$strQueueName = 'Test_bihu_queue'; //進(jìn)隊(duì)列$redis->rpush($strQueueName, json_encode(['uid' => 1,'name' => 'Job']));$redis->rpush($strQueueName, json_encode(['uid' => 2,'name' => 'Tom']));$redis->rpush($strQueueName, json_encode(['uid' => 3,'name' => 'John']));echo "---- 進(jìn)隊(duì)列成功 ----
"; //查看隊(duì)列$strCount = $redis->lrange($strQueueName, 0, -1);echo "當(dāng)前隊(duì)列數(shù)據(jù)為:
"; print_r($strCount); //出隊(duì)列$redis->lpop($strQueueName);echo "
---- 出隊(duì)列成功 ----
"; //查看隊(duì)列$strCount = $redis->lrange($strQueueName, 0, -1);echo "當(dāng)前隊(duì)列數(shù)據(jù)為:
"; print_r($strCount);復(fù)制代碼
簡(jiǎn)單發(fā)布訂閱實(shí)戰(zhàn)
//以下是 pub.php 文件的內(nèi)容 cli下運(yùn)行 ini_set('default_socket_timeout', -1);$redis->connect('127.0.0.1', 6379);$strChannel = 'Test_bihu_channel'; //發(fā)布$redis->publish($strChannel, "來(lái)自{$strChannel}頻道的推送");echo "---- {$strChannel} ---- 頻道消息推送成功~
";$redis->close();復(fù)制代碼
//以下是 sub.php 文件內(nèi)容 cli下運(yùn)行 ini_set('default_socket_timeout', -1);$redis->connect('127.0.0.1', 6379);$strChannel = 'Test_bihu_channel'; //訂閱echo "---- 訂閱{$strChannel}這個(gè)頻道,等待消息推送...----
";$redis->subscribe([$strChannel], 'callBackFun');function callBackFun($redis, $channel, $msg) { print_r([ 'redis' => $redis, 'channel' => $channel, 'msg' => $msg ]); }復(fù)制代碼
簡(jiǎn)單計(jì)數(shù)器實(shí)戰(zhàn)
$redis->connect('127.0.0.1', 6379);$strKey = 'Test_bihu_comments'; //設(shè)置初始值$redis->set($strKey, 0);$redis->INCR($strKey); //+1$redis->INCR($strKey); //+1$redis->INCR($strKey); //+1$strNowCount = $redis->get($strKey);echo "---- 當(dāng)前數(shù)量為{$strNowCount}。 ---- ";復(fù)制代碼
排行榜實(shí)戰(zhàn)
$redis->connect('127.0.0.1', 6379);$strKey = 'Test_bihu_score'; //存儲(chǔ)數(shù)據(jù)$redis->zadd($strKey, '50', json_encode(['name' => 'Tom']));$redis->zadd($strKey, '70', json_encode(['name' => 'John']));$redis->zadd($strKey, '90', json_encode(['name' => 'Jerry']));$redis->zadd($strKey, '30', json_encode(['name' => 'Job']));$redis->zadd($strKey, '100', json_encode(['name' => 'LiMing']));$dataOne = $redis->ZREVRANGE($strKey, 0, -1, true);echo "---- {$strKey}由大到小的排序 ----
"; print_r($dataOne);$dataTwo = $redis->ZRANGE($strKey, 0, -1, true);echo "
---- {$strKey}由小到大的排序 ----
"; print_r($dataTwo);復(fù)制代碼
簡(jiǎn)單字符串悲觀鎖實(shí)戰(zhàn)
解釋:悲觀鎖(Pessimistic Lock), 顧名思義,就是很悲觀。
每次去拿數(shù)據(jù)的時(shí)候都認(rèn)為別人會(huì)修改,所以每次在拿數(shù)據(jù)的時(shí)候都會(huì)上鎖。
場(chǎng)景:如果項(xiàng)目中使用了緩存且對(duì)緩存設(shè)置了超時(shí)時(shí)間。
當(dāng)并發(fā)量比較大的時(shí)候,如果沒(méi)有鎖機(jī)制,那么緩存過(guò)期的瞬間,
大量并發(fā)請(qǐng)求會(huì)穿透緩存直接查詢數(shù)據(jù)庫(kù),造成雪崩效應(yīng)。
/** * 獲取鎖 * @param String $key 鎖標(biāo)識(shí) * @param Int $expire 鎖過(guò)期時(shí)間 * @return Boolean */ public function lock($key = '', $expire = 5) { $is_lock = $this->_redis->setnx($key, time()+$expire); //不能獲取鎖 if(!$is_lock){ //判斷鎖是否過(guò)期 $lock_time = $this->_redis->get($key); //鎖已過(guò)期,刪除鎖,重新獲取 if (time() > $lock_time) { unlock($key); $is_lock = $this->_redis->setnx($key, time() + $expire); } } return $is_lock? true : false; } /** * 釋放鎖 * @param String $key 鎖標(biāo)識(shí) * @return Boolean */ public function unlock($key = ''){ return $this->_redis->del($key); } // 定義鎖標(biāo)識(shí)$key = 'Test_bihu_lock'; // 獲取鎖$is_lock = lock($key, 10);if ($is_lock) { echo 'get lock success
'; echo 'do sth..
'; sleep(5); echo 'success
'; unlock($key); } else { //獲取鎖失敗 echo 'request too frequently
'; }復(fù)制代碼
簡(jiǎn)單事務(wù)的樂(lè)觀鎖實(shí)戰(zhàn)
解釋:樂(lè)觀鎖(Optimistic Lock), 顧名思義,就是很樂(lè)觀。
每次去拿數(shù)據(jù)的時(shí)候都認(rèn)為別人不會(huì)修改,所以不會(huì)上鎖。
watch命令會(huì)監(jiān)視給定的key,當(dāng)exec時(shí)候如果監(jiān)視的key從調(diào)用watch后發(fā)生過(guò)變化,則整個(gè)事務(wù)會(huì)失敗。
也可以調(diào)用watch多次監(jiān)視多個(gè)key。這樣就可以對(duì)指定的key加樂(lè)觀鎖了。
注意watch的key是對(duì)整個(gè)連接有效的,事務(wù)也一樣。
如果連接斷開(kāi),監(jiān)視和事務(wù)都會(huì)被自動(dòng)清除。
當(dāng)然了exec,discard,unwatch命令都會(huì)清除連接中的所有監(jiān)視。
$strKey = 'Test_bihu_age';$redis->set($strKey,10);$age = $redis->get($strKey);echo "---- Current Age:{$age} ----
";$redis->watch($strKey); // 開(kāi)啟事務(wù)$redis->multi(); //在這個(gè)時(shí)候新開(kāi)了一個(gè)新會(huì)話執(zhí)行$redis->set($strKey,30); //新會(huì)話echo "---- Current Age:{$age} ----
"; //30$redis->set($strKey,20);$redis->exec();$age = $redis->get($strKey);echo "---- Current Age:{$age} ----
"; //30 //當(dāng)exec時(shí)候如果監(jiān)視的key從調(diào)用watch后發(fā)生過(guò)變化,則整個(gè)事務(wù)會(huì)失敗復(fù)制代碼
以上就是PHP實(shí)戰(zhàn)之Redis常見(jiàn)7種使用場(chǎng)景的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!