php監聽redis key失效觸發回撥事件

2020-07-16 10:06:07

訂單超時、活動過期解決方案:php監聽redis key失效觸發回撥事件

Redis 的 2.8.0 版本之後可用,鍵空間訊息(Redis Keyspace Notifications),配合 2.0.0 版本之後的 SUBSCRIBE 就能完成這個定時任務的操作了,定時的單位是秒。

1.我們先訂閱頻道名為 redisChat

d97c70dbeb0ecf31bafa70bde2f629e.png

2.現在,我們重新開啟個 redis 用戶端,然後在同一個頻道 redisChat 發布訊息,訂閱者就能接收到訊息。

95f96008cc31b461473adf59181e0c2.png

接收到的訊息如下:

994a7a4938bf37b8f59224278e90a83.png

3.Key過期事件的Redis設定

這裡需要設定 notify-keyspace-events 的引數為 「Ex」。x 代表了過期事件。notify-keyspace-events 「Ex」 儲存設定後,重新啟動Redis服務,使設定生效。

PHP redis實現訂閱鍵空間通知

redis範例化類:

redis.class.php

//遇到類別重複的報錯,所有叫Redis2
class Redis2   
{
    private $redis;
 
    public function __construct($host = '127.0.0.1', $port = 6379)
    {
        $this->redis = new Redis();
        $this->redis->connect($host, $port);
    }
 
    public function setex($key, $time, $val)
    {
        return $this->redis->setex($key, $time, $val);
    }
 
    public function set($key, $val)
    {
        return $this->redis->set($key, $val);
    }
 
    public function get($key)
    {
        return $this->redis->get($key);
    }
 
    public function expire($key = null, $time = 0)
    {
        return $this->redis->expire($key, $time);
    }
 
    public function psubscribe($patterns = array(), $callback)
    {
        $this->redis->psubscribe($patterns, $callback);
    }
 
    public function setOption()
    {
        $this->redis->setOption(Redis::OPT_READ_TIMEOUT, -1);
    }
 
}

過期事件的訂閱:

psubscribe.php

require_once './Redis.class.php';
$redis = new Redis2();
// 解決Redis用戶端訂閱時候超時情況
$redis->setOption();
$redis->psubscribe(array('[email protected]__:expired'), 'keyCallback');
// 回撥函數,這裡寫處理邏輯
function keyCallback($redis, $pattern, $chan, $msg)
{
    echo "Pattern: $patternn";
    echo "Channel: $chann";
    echo "Payl
    oad: $msgnn";
    //keyCallback為訂閱事件後的回撥函數,這裡寫業務處理邏輯,
    //比如前面提到的商品不支付自動撤單,這裡就可以根據訂單id,來實現自動撤單 
}

設定過期事件:

index.php

require_once './Redis.class.php';
$redis = new Redis2();
$order_id = 123;
$redis->setex('order_id',10,$order_id);

先用命令列模式執行 psubscribe.php

在瀏覽器存取 index.php

效果如下:

c4802719d7cd03be48f80e3f31d27f8.png

以上就是php監聽redis key失效觸發回撥事件的詳細內容,更多請關注TW511.COM其它相關文章!