Redis 常見 7 種使用場景 (PHP 實戰)

訢亮發表於2017-02-24

Redis是一個開源的使用ANSI C語言編寫、支援網路、可基於記憶體亦可持久化的日誌型、Key-Value資料庫,並提供多種語言的API。

本篇文章,主要介紹利用PHP使用Redis,主要的應用場景。

簡單字串快取實戰

$redis->connect('127.0.0.1', 6379);
$strCacheKey  = 'Test_bihu';

//SET 應用
$arrCacheData = [
    'name' => 'job',
    'sex'  => '男',
    'age'  => '30'
];
$redis->set($strCacheKey, json_encode($arrCacheData));
$redis->expire($strCacheKey, 30);  # 設定30秒後過期
$json_data = $redis->get($strCacheKey);
$data = json_decode($json_data);
print_r($data->age); //輸出資料

//HSET 應用
$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); //輸出資料複製程式碼

簡單佇列實戰


$redis->connect('127.0.0.1', 6379);
$strQueueName  = 'Test_bihu_queue';

//進佇列
$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 "---- 進佇列成功 ---- <br /><br />";

//檢視佇列
$strCount = $redis->lrange($strQueueName, 0, -1);
echo "當前佇列資料為: <br />";
print_r($strCount);

//出佇列
$redis->lpop($strQueueName);
echo "<br /><br /> ---- 出佇列成功 ---- <br /><br />";

//檢視佇列
$strCount = $redis->lrange($strQueueName, 0, -1);
echo "當前佇列資料為: <br />";
print_r($strCount);複製程式碼

簡單釋出訂閱實戰

//以下是 pub.php 檔案的內容 cli下執行
ini_set('default_socket_timeout', -1);
$redis->connect('127.0.0.1', 6379);
$strChannel = 'Test_bihu_channel';

//釋出
$redis->publish($strChannel, "來自{$strChannel}頻道的推送");
echo "---- {$strChannel} ---- 頻道訊息推送成功~ <br/>";
$redis->close();複製程式碼
//以下是 sub.php 檔案內容 cli下執行
ini_set('default_socket_timeout', -1);
$redis->connect('127.0.0.1', 6379);
$strChannel = 'Test_bihu_channel';

//訂閱
echo "---- 訂閱{$strChannel}這個頻道,等待訊息推送...----  <br/><br/>";
$redis->subscribe([$strChannel], 'callBackFun');
function callBackFun($redis, $channel, $msg)
{
    print_r([
        'redis'   => $redis,
        'channel' => $channel,
        'msg'     => $msg
    ]);
}複製程式碼

簡單計數器實戰

$redis->connect('127.0.0.1', 6379);
$strKey = 'Test_bihu_comments';

//設定初始值
$redis->set($strKey, 0);

$redis->INCR($strKey);  //+1
$redis->INCR($strKey);  //+1
$redis->INCR($strKey);  //+1

$strNowCount = $redis->get($strKey);

echo "---- 當前數量為{$strNowCount}。 ---- ";複製程式碼

排行榜實戰

$redis->connect('127.0.0.1', 6379);
$strKey = 'Test_bihu_score';

//儲存資料
$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}由大到小的排序 ---- <br /><br />";
print_r($dataOne);

$dataTwo = $redis->ZRANGE($strKey, 0, -1, true);
echo "<br /><br />---- {$strKey}由小到大的排序 ---- <br /><br />";
print_r($dataTwo);複製程式碼

簡單字串悲觀鎖實戰

解釋:悲觀鎖(Pessimistic Lock), 顧名思義,就是很悲觀。

每次去拿資料的時候都認為別人會修改,所以每次在拿資料的時候都會上鎖。

場景:如果專案中使用了快取且對快取設定了超時時間。

當併發量比較大的時候,如果沒有鎖機制,那麼快取過期的瞬間,

大量併發請求會穿透快取直接查詢資料庫,造成雪崩效應。

/**
 * 獲取鎖
 * @param  String  $key    鎖標識
 * @param  Int     $expire 鎖過期時間
 * @return Boolean
 */
public function lock($key = '', $expire = 5) {
    $is_lock = $this->_redis->setnx($key, time()+$expire);
    //不能獲取鎖
    if(!$is_lock){
        //判斷鎖是否過期
        $lock_time = $this->_redis->get($key);
        //鎖已過期,刪除鎖,重新獲取
        if (time() > $lock_time) {
            unlock($key);
            $is_lock = $this->_redis->setnx($key, time() + $expire);
        }
    }

    return $is_lock? true : false;
}

/**
 * 釋放鎖
 * @param  String  $key 鎖標識
 * @return Boolean
 */
public function unlock($key = ''){
    return $this->_redis->del($key);
}

// 定義鎖標識
$key = 'Test_bihu_lock';

// 獲取鎖
$is_lock = lock($key, 10);
if ($is_lock) {
    echo 'get lock success<br>';
    echo 'do sth..<br>';
    sleep(5);
    echo 'success<br>';
    unlock($key);
} else { //獲取鎖失敗
    echo 'request too frequently<br>';
}複製程式碼

簡單事務的樂觀鎖實戰

解釋:樂觀鎖(Optimistic Lock), 顧名思義,就是很樂觀。

每次去拿資料的時候都認為別人不會修改,所以不會上鎖。

watch命令會監視給定的key,當exec時候如果監視的key從呼叫watch後發生過變化,則整個事務會失敗。

也可以呼叫watch多次監視多個key。這樣就可以對指定的key加樂觀鎖了。

注意watch的key是對整個連線有效的,事務也一樣。

如果連線斷開,監視和事務都會被自動清除。

當然了exec,discard,unwatch命令都會清除連線中的所有監視。

$strKey = 'Test_bihu_age';

$redis->set($strKey,10);

$age = $redis->get($strKey);

echo "---- Current Age:{$age} ---- <br/><br/>";

$redis->watch($strKey);

// 開啟事務
$redis->multi();

//在這個時候新開了一個新會話執行
$redis->set($strKey,30);  //新會話

echo "---- Current Age:{$age} ---- <br/><br/>"; //30

$redis->set($strKey,20);

$redis->exec();

$age = $redis->get($strKey);

echo "---- Current Age:{$age} ---- <br/><br/>"; //30

//當exec時候如果監視的key從呼叫watch後發生過變化,則整個事務會失敗複製程式碼

Thanks ~


作者:PHP後端開發者

免費提供技術諮詢服務(自己懂的知識)。

QQ群:564557094。

關注微信公眾號,留言即可,看到留言後會及時回覆。

Redis 常見 7 種使用場景 (PHP 實戰)
IT小圈兒

相關文章