首頁  >  文章  >  後端開發  >  用PHP+Redis實現延遲任務 實現自動取消訂單(詳細教學)

用PHP+Redis實現延遲任務 實現自動取消訂單(詳細教學)

PHPz
PHPz轉載
2019-11-20 18:03:222992瀏覽

簡單定時任務解決方案:使用redis的keyspace notifications(鍵失效後通知事件) 需要注意此功能是在redis 2.8版本以後推出的,因此你伺服器上的reids最少要是2.8版本以上;

(A)業務場景:

1、當一個業務觸發以後需要啟動一個定時任務,在指定時間內再去執行一個任務(如自動取消訂單,自動完成訂單等功能)

2、redis的keyspace notifications 會在key失效後發送一個事件,監聽此事件的的客戶端就可以收到通知

(B)服務準備:

1、修改reids設定檔(redis.conf)【window系統設定檔為:redis.windows.conf 】

redis預設不會開啟keyspace notifications,因為開啟後會對cpu有消耗

備註:E:keyevent事件,事件以__keyevent@909dafdfb3cc5ae0f4811767ed936791__為前綴發佈;

x:過期事件,當某個鍵過期並刪除時會產生該事件;

原始配置為:

notify-keyspace-events ""

#更改配置如下:

notify-keyspace-events "Ex"

儲存設定後,重新啟動Redis服務,讓設定生效

[root@chokingwin etc]#
service redis-server restart /usr/local/redis/etc/redis.conf 
Stopping redis-server: [ OK ] 
Starting redis-server: [ OK ]

window系統重新啟動redis ,先切換到redis檔案目錄,然後關閉redis服務(redis-server --service-stop),再開啟(redis-server --service-start)

#C)檔案代碼:

phpredis實作訂閱Keyspace notification,可實現自動取消訂單,自動完成訂單。以下為測試範例

建立4個文件,然後自行修改資料庫與redis設定參數

db.class.php

33186afcce9d7ca96fe1e723da162548'127.0.0.1',
            'username'=>'root',
            'password'=>'168168',
            'database'=>'test',
            'port'=>3306,
        );        $host = $config['host'];    //主机地址
        $username = $config['username'];//用户名
        $password = $config['password'];//密码
        $database = $config['database'];//数据库
        $port = $config['port'];    //端口号
        $this->mysqli = new mysqli($host, $username, $password, $database, $port);

    }    /**
     * 数据查询
     * @param $table 数据表
     * @param null $field 字段
     * @param null $where 条件
     * @return mixed 查询结果数目     */
    public function select($table, $field = null, $where = null)
    {        $sql = "SELECT * FROM `{$table}`";        //echo $sql;exit;
        if (!empty($field)) {            $field = '`' . implode('`,`', $field) . '`';            $sql = str_replace('*', $field, $sql);
        }        if (!empty($where)) {            $sql = $sql . ' WHERE ' . $where;
        }        $this->result = $this->mysqli->query($sql);        return $this->result;
    }    /**
     * @return mixed 获取全部结果     */
    public function fetchAll()
    {        return $this->result->fetch_all(MYSQLI_ASSOC);
    }    /**
     * 插入数据
     * @param $table 数据表
     * @param $data 数据数组
     * @return mixed 插入ID     */
    public function insert($table, $data)
    {        foreach ($data as $key => $value) {            $data[$key] = $this->mysqli->real_escape_string($value);
        }        $keys = '`' . implode('`,`', array_keys($data)) . '`';        $values = '\'' . implode("','", array_values($data)) . '\'';        $sql = "INSERT INTO `{$table}`( {$keys} )VALUES( {$values} )";        $this->mysqli->query($sql);        return $this->mysqli->insert_id;
    }    /**
     * 更新数据
     * @param $table 数据表
     * @param $data 数据数组
     * @param $where 过滤条件
     * @return mixed 受影响记录     */
    public function update($table, $data, $where)
    {        foreach ($data as $key => $value) {            $data[$key] = $this->mysqli->real_escape_string($value);
        }        $sets = array();        foreach ($data as $key => $value) {            $kstr = '`' . $key . '`';            $vstr = '\'' . $value . '\'';            array_push($sets, $kstr . '=' . $vstr);
        }        $kav = implode(',', $sets);        $sql = "UPDATE `{$table}` SET {$kav} WHERE {$where}";        $this->mysqli->query($sql);        return $this->mysqli->affected_rows;
    }    /**
     * 删除数据
     * @param $table 数据表
     * @param $where 过滤条件
     * @return mixed 受影响记录     */
    public function delete($table, $where)
    {        $sql = "DELETE FROM `{$table}` WHERE {$where}";        $this->mysqli->query($sql);        return $this->mysqli->affected_rows;
    }
}
index.php

<?php

require_once &#39;Redis2.class.php&#39;;

$redis = new \Redis2(&#39;127.0.0.1&#39;,&#39;6379&#39;,&#39;&#39;,&#39;15&#39;);
$order_sn   = &#39;SN&#39;.time().&#39;T&#39;.rand(10000000,99999999);

$use_mysql = 1;         //是否使用数据库,1使用,2不使用
if($use_mysql == 1){
   /*
    *   //数据表
    *   CREATE TABLE `order` (
    *      `ordersn` varchar(255) NOT NULL DEFAULT &#39;&#39;,
    *      `status` varchar(255) NOT NULL DEFAULT &#39;&#39;,
    *      `createtime` varchar(255) NOT NULL DEFAULT &#39;&#39;,
    *      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    *       PRIMARY KEY (`id`)
    *   ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4;
   */
    require_once &#39;db.class.php&#39;;
    $mysql      = new \mysql();
    $mysql->connect();
    $data       = [&#39;ordersn&#39;=>$order_sn,&#39;status&#39;=>0,&#39;createtime&#39;=>date(&#39;Y-m-d H:i:s&#39;,time())];
    $mysql->insert(&#39;order&#39;,$data);
}

$list = [$order_sn,$use_mysql];
$key = implode(&#39;:&#39;,$list);

$redis->setex($key,3,&#39;redis延迟任务&#39;);      //3秒后回调



$test_del = false;      //测试删除缓存后是否会有过期回调。结果:没有回调
if($test_del == true){
    //sleep(1);
    $redis->delete($order_sn);
}

echo $order_sn;



/*
 *   测试其他key会不会有回调,结果:有回调
 *   $k = &#39;test&#39;;
 *   $redis2->set($k,&#39;100&#39;);
 *   $redis2->expire($k,10);
 *
*/

 

psubscribe.php

<?php
ini_set(&#39;default_socket_timeout&#39;, -1);  //不超时
require_once &#39;Redis2.class.php&#39;;
$redis_db = &#39;15&#39;;
$redis = new \Redis2(&#39;127.0.0.1&#39;,&#39;6379&#39;,&#39;&#39;,$redis_db);
// 解决Redis客户端订阅时候超时情况
$redis->setOption();
//当key过期的时候就看到通知,订阅的key __keyevent@<db>__:expired 这个格式是固定的,db代表的是数据库的编号,由于订阅开启之后这个库的所有key过期时间都会被推送过来,所以最好单独使用一个数据库来进行隔离
$redis->psubscribe(array(&#39;__keyevent@&#39;.$redis_db.&#39;__:expired&#39;), &#39;keyCallback&#39;);
// 回调函数,这里写处理逻辑
function keyCallback($redis, $pattern, $channel, $msg)
{
    echo PHP_EOL;
    echo "Pattern: $pattern\n";
    echo "Channel: $channel\n";
    echo "Payload: $msg\n\n";
    $list = explode(&#39;:&#39;,$msg);

    $order_sn = isset($list[0])?$list[0]:&#39;0&#39;;
    $use_mysql = isset($list[1])?$list[1]:&#39;0&#39;;

    if($use_mysql == 1){
        require_once &#39;db.class.php&#39;;
        $mysql = new \mysql();
        $mysql->connect();
        $where = "ordersn = &#39;".$order_sn."&#39;";
        $mysql->select(&#39;order&#39;,&#39;&#39;,$where);
        $finds=$mysql->fetchAll();
        print_r($finds);
        if(isset($finds[0][&#39;status&#39;]) && $finds[0][&#39;status&#39;]==0){
            $data   = array(&#39;status&#39; => 3);
            $where  = " id = ".$finds[0][&#39;id&#39;];
            $mysql->update(&#39;order&#39;,$data,$where);
        }
    }

}


//或者
/*$redis->psubscribe(array(&#39;__keyevent@&#39;.$redis_db.&#39;__:expired&#39;), function ($redis, $pattern, $channel, $msg){
    echo PHP_EOL;
    echo "Pattern: $pattern\n";
    echo "Channel: $channel\n";
    echo "Payload: $msg\n\n";
    //................
});*/

Redis2.class.php

<?php

class Redis2
{
    private $redis;

    public function __construct($host = &#39;127.0.0.1&#39;, $port = &#39;6379&#39;,$password = &#39;&#39;,$db = &#39;15&#39;)
    {
        $this->redis = new Redis();
        $this->redis->connect($host, $port);    //连接Redis
        $this->redis->auth($password);      //密码验证
        $this->redis->select($db);    //选择数据库
    }

    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);
    }

    public function lRange($key,$start,$end)
    {
        return $this->redis->lRange($key,$start,$end);
    }

    public function lPush($key, $value1, $value2 = null, $valueN = null ){
        return $this->redis->lPush($key, $value1, $value2 = null, $valueN = null );
    }

    public function delete($key1, $key2 = null, $key3 = null)
    {
        return $this->redis->delete($key1, $key2 = null, $key3 = null);
    }

}

 

window系統測試方法:先在cmd指令介面執行psubscribe.php,然後網頁打開index.php。

讓監聽後台始終運行(訂閱)

###有個問題做到這一步,利用phpredis 擴展,成功在程式碼裡實現對過期Key 的監聽,並在psCallback()裡進行回調處理。開頭提出的兩個需求已經實現。可是這裡有個問題:redis 執行完訂閱作業後,終端機進入阻塞狀態,需要一直掛在那裡。且此訂閱腳本需要人為在命令列執行,不符合實際需求。 ######實際上,我們對過期監聽回呼的需求,是希望它像守護程序一樣,在後台運行,當有過期事件的消息時,觸發回調函數。使監聽後台始終運行 希望像守護程序一樣在後台一樣,######我是這樣實現的。 ######Linux中有一個nohup指令。功能就是不掛斷地運行命令。同時nohup把腳本程式的所有輸出,都放到目前目錄的nohup.out檔中,如果檔案不可寫,則放到525d2e3585c92e85927f1a7619d87962/nohup.out 檔案中。那麼有了這個指令以後,不管我們終端機視窗是否關閉,都能夠讓我們的php腳本一直運作。 ######寫psubscribe.php檔:###
<?php
#! /usr/bin/env php
ini_set(&#39;default_socket_timeout&#39;, -1);  //不超时
require_once &#39;Redis2.class.php&#39;;
$redis_db = &#39;15&#39;;
$redis = new \Redis2(&#39;127.0.0.1&#39;,&#39;6379&#39;,&#39;&#39;,$redis_db);
// 解决Redis客户端订阅时候超时情况
$redis->setOption();
//当key过期的时候就看到通知,订阅的key __keyevent@<db>__:expired 这个格式是固定的,db代表的是数据库的编号,由于订阅开启之后这个库的所有key过期时间都会被推送过来,所以最好单独使用一个数据库来进行隔离
$redis->psubscribe(array(&#39;__keyevent@&#39;.$redis_db.&#39;__:expired&#39;), &#39;keyCallback&#39;);
// 回调函数,这里写处理逻辑
function keyCallback($redis, $pattern, $channel, $msg)
{
    echo PHP_EOL;
    echo "Pattern: $pattern\n";
    echo "Channel: $channel\n";
    echo "Payload: $msg\n\n";
    $list = explode(&#39;:&#39;,$msg);

    $order_sn = isset($list[0])?$list[0]:&#39;0&#39;;
    $use_mysql = isset($list[1])?$list[1]:&#39;0&#39;;

    if($use_mysql == 1){
        require_once &#39;db.class.php&#39;;
        $mysql = new \mysql();
        $mysql->connect();
        $where = "ordersn = &#39;".$order_sn."&#39;";
        $mysql->select(&#39;order&#39;,&#39;&#39;,$where);
        $finds=$mysql->fetchAll();
        print_r($finds);
        if(isset($finds[0][&#39;status&#39;]) && $finds[0][&#39;status&#39;]==0){
            $data   = array(&#39;status&#39; => 3);
            $where  = " id = ".$finds[0][&#39;id&#39;];
            $mysql->update(&#39;order&#39;,$data,$where);
        }
    }

}


//或者
/*$redis->psubscribe(array(&#39;__keyevent@&#39;.$redis_db.&#39;__:expired&#39;), function ($redis, $pattern, $channel, $msg){
    echo PHP_EOL;
    echo "Pattern: $pattern\n";
    echo "Channel: $channel\n";
    echo "Payload: $msg\n\n";
    //................
});*/
###注意:我們在開頭,申明php 編譯器的路徑:###
#! /usr/bin/env php
############## #這是執行php 腳本所必須的。 ######然後,nohup 不掛起執行 psubscribe.php,注意 末尾的 ##
[root@chokingwin HiGirl]# nohup ./psubscribe.php & 
[1] 4456 nohup: ignoring input and appending output to `nohup.out&#39;
###說明:腳本確實已經在 4456 號進程上跑起來。 ######查看下nohup.out cat 一下nohuo.out,看下是否有過期輸出:###
[root@chokingwin HiGirl]# cat nohup.out 
Pattern:__keyevent@0__:expired 
Channel: __keyevent@0__:expired 
Payload: name
###運行index.php ,3秒後效果如上即成功#######遇到問題:使用命令列模式開啟監控腳本,一段時間後報錯:Error while sending QUERY packet. PID=xxx###

解决方法:由于等待消息队列是一个长连接,而等待回调前有个数据库连接,数据库的wait_timeout=28800,所以只要下一条消息离上一条消息超过8小时,就会出现这个错误,把wait_timeout设置成10,并且捕获异常,发现真实的报错是 MySQL server has gone away ,
所以只要处理完所有业务逻辑后主动关闭数据库连接,即数据库连接主动close掉就可以解决问题

yii解决方法如下:

Yii::$app->db->close();

查看进程方法:

 ps -aux|grep psubscribe.php

a:显示所有程序
u:以用户为主的格式来显示
x:显示所有程序,不以终端机来区分

查看jobs进程ID:[ jobs -l ]命令

www@iZ232eoxo41Z:~/tinywan $ jobs -l
[1]-  1365 Stopped (tty output)    sudo nohup psubscribe.php > /dev/null 2>&1 
[2]+ 1370 Stopped (tty output) sudo nohup psubscribe.php > /dev/null 2>&1

终止后台运行的进程方法:

kill -9  进程号

清空 nohup.out文件方法:

cat /dev/null > nohup.out

我们在使用nohup的时候,一般都和&配合使用,但是在实际使用过程中,很多人后台挂上程序就这样不管了,其实这样有可能在当前账户非正常退出或者结束的时候,命令还是自己结束了。

所以在使用nohup命令后台运行命令之后,我们需要做以下操作:

1.先回车,退出nohup的提示。

2.然后执行exit正常退出当前账户。
3.然后再去链接终端。使得程序后台正常运行。

我们应该每次都使用exit退出,而不应该每次在nohup执行成功后直接关闭终端。这样才能保证命令一直在后台运行。

以上是用PHP+Redis實現延遲任務 實現自動取消訂單(詳細教學)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:cnblogs.com。如有侵權,請聯絡admin@php.cn刪除