php+redis,延遲任務 實現自動取消訂單,自動完成訂單

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

(A)業務場景:mysql

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

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

(B)服務準備:數據庫

一、修改reids配置文件(redis.conf)【window系統配置文件爲:redis.windows.conf 】windows

redis默認不會開啓keyspace notifications,由於開啓後會對cpu有消耗數組

備註: E:keyevent事件,事件以__keyevent@<db>__爲前綴進行發佈;緩存

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

原配置爲:app

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

<?php class mysql { private $mysqli; private $result; /** * 數據庫鏈接 * @param $config 配置數組 */

    public function connect() { $config=array( 'host'=>'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; } }
View Code

index.php

<?php require_once 'Redis2.class.php'; $redis = new \Redis2('127.0.0.1','6379','','15'); $order_sn   = 'SN'.time().'T'.rand(10000000,99999999); $use_mysql = 1;         //是否使用數據庫,1使用,2不使用
if($use_mysql == 1){ /* * //數據表 * CREATE TABLE `order` ( * `ordersn` varchar(255) NOT NULL DEFAULT '', * `status` varchar(255) NOT NULL DEFAULT '', * `createtime` varchar(255) NOT NULL DEFAULT '', * `id` int(11) unsigned NOT NULL AUTO_INCREMENT, * PRIMARY KEY (`id`) * ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4; */
    require_once 'db.class.php'; $mysql      = new \mysql(); $mysql->connect(); $data       = ['ordersn'=>$order_sn,'status'=>0,'createtime'=>date('Y-m-d H:i:s',time())]; $mysql->insert('order',$data); } $list = [$order_sn,$use_mysql]; $key = implode(':',$list); $redis->setex($key,3,'redis延遲任務');      //3秒後回調



$test_del = false;      //測試刪除緩存後是否會有過時回調。結果:沒有回調
if($test_del == true){ //sleep(1);
    $redis->delete($order_sn); } echo $order_sn; /* * 測試其餘key會不會有回調,結果:有回調 * $k = 'test'; * $redis2->set($k,'100'); * $redis2->expire($k,10); * */
View Code

psubscribe.php

<?php ini_set('default_socket_timeout', -1);  //不超時
require_once 'Redis2.class.php'; $redis_db = '15'; $redis = new \Redis2('127.0.0.1','6379','',$redis_db); // 解決Redis客戶端訂閱時候超時狀況
$redis->setOption(); //當key過時的時候就看到通知,訂閱的key __keyevent@<db>__:expired 這個格式是固定的,db表明的是數據庫的編號,因爲訂閱開啓以後這個庫的全部key過時時間都會被推送過來,因此最好單獨使用一個數據庫來進行隔離
$redis->psubscribe(array('__keyevent@'.$redis_db.'__:expired'), 'keyCallback'); // 回調函數,這裏寫處理邏輯
function keyCallback($redis, $pattern, $channel, $msg) { echo PHP_EOL; echo "Pattern: $pattern\n"; echo "Channel: $channel\n"; echo "Payload: $msg\n\n"; $list = explode(':',$msg); $order_sn = isset($list[0])?$list[0]:'0'; $use_mysql = isset($list[1])?$list[1]:'0'; if($use_mysql == 1){ require_once 'db.class.php'; $mysql = new \mysql(); $mysql->connect(); $where = "ordersn = '".$order_sn."'"; $mysql->select('order','',$where); $finds=$mysql->fetchAll(); print_r($finds); if(isset($finds[0]['status']) && $finds[0]['status']==0){ $data   = array('status' => 3); $where  = " id = ".$finds[0]['id']; $mysql->update('order',$data,$where); } } } //或者 /*$redis->psubscribe(array('__keyevent@'.$redis_db.'__:expired'), function ($redis, $pattern, $channel, $msg){ echo PHP_EOL; echo "Pattern: $pattern\n"; echo "Channel: $channel\n"; echo "Payload: $msg\n\n"; //................ });*/
View Code

Redis2.class.php

<?php class Redis2 { private $redis; public function __construct($host = '127.0.0.1', $port = '6379',$password = '',$db = '15') { $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); } }
View Code

window系統測試方法:先在cmd命令界面運行psubscribe.php,而後網頁打開index.php。3秒後效果以下

 

使監聽後臺始終運行(訂閱)

   有個問題 作到這一步,利用 phpredis 擴展,成功在代碼裏實現對過時 Key 的監聽,並在 psCallback()裏進行回調處理。 開頭提出的兩個需求已經實現。 但是這裏有個問題:redis 在執行完訂閱操做後,終端進入阻塞狀態,須要一直掛在那。且此訂閱腳本須要人爲在命令行執行,不符合實際需求。

    實際上,咱們對過時監聽回調的需求,是但願它像守護進程同樣,在後臺運行,當有過時事件的消息時,觸發回調函數。 使監聽後臺始終運行 但願像守護進程同樣在後臺同樣,

我是這樣實現的。

    Linux中有一個nohup命令。功能就是不掛斷地運行命令。 同時nohup把腳本程序的全部輸出,都放到當前目錄的nohup.out文件中,若是文件不可寫,則放到<用戶主目錄>/nohup.out 文件中。那麼有了這個命令之後,無論咱們終端窗口是否關閉,都可以讓咱們的php腳本一直運行。

編寫psubscribe.php文件:

<?php #! /usr/bin/env php
ini_set('default_socket_timeout', -1);  //不超時
require_once 'Redis2.class.php'; $redis_db = '15'; $redis = new \Redis2('127.0.0.1','6379','',$redis_db); // 解決Redis客戶端訂閱時候超時狀況
$redis->setOption(); //當key過時的時候就看到通知,訂閱的key __keyevent@<db>__:expired 這個格式是固定的,db表明的是數據庫的編號,因爲訂閱開啓以後這個庫的全部key過時時間都會被推送過來,因此最好單獨使用一個數據庫來進行隔離
$redis->psubscribe(array('__keyevent@'.$redis_db.'__:expired'), 'keyCallback'); // 回調函數,這裏寫處理邏輯
function keyCallback($redis, $pattern, $channel, $msg) { echo PHP_EOL; echo "Pattern: $pattern\n"; echo "Channel: $channel\n"; echo "Payload: $msg\n\n"; $list = explode(':',$msg); $order_sn = isset($list[0])?$list[0]:'0'; $use_mysql = isset($list[1])?$list[1]:'0'; if($use_mysql == 1){ require_once 'db.class.php'; $mysql = new \mysql(); $mysql->connect(); $where = "ordersn = '".$order_sn."'"; $mysql->select('order','',$where); $finds=$mysql->fetchAll(); print_r($finds); if(isset($finds[0]['status']) && $finds[0]['status']==0){ $data   = array('status' => 3); $where  = " id = ".$finds[0]['id']; $mysql->update('order',$data,$where); } } } //或者 /*$redis->psubscribe(array('__keyevent@'.$redis_db.'__:expired'), function ($redis, $pattern, $channel, $msg){ echo PHP_EOL; echo "Pattern: $pattern\n"; echo "Channel: $channel\n"; echo "Payload: $msg\n\n"; //................ });*/
View Code

注意:咱們在開頭,申明 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'

說明:腳本確實已經在 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執行成功後直接關閉終端。這樣才能保證命令一直在後臺運行。

相關文章
相關標籤/搜索