簡單定時(shí)任務(wù)解決方案:使用redis的keyspace notifications(鍵失效后通知事件) 需要注意此功能是在redis 2.8版本以后推出的,因此你服務(wù)器上的reids最少要是2.8版本以上;
(A)業(yè)務(wù)場(chǎng)景:
1、當(dāng)一個(gè)業(yè)務(wù)觸發(fā)以后需要啟動(dòng)一個(gè)定時(shí)任務(wù),在指定時(shí)間內(nèi)再去執(zhí)行一個(gè)任務(wù)(如自動(dòng)取消訂單,自動(dòng)完成訂單等功能)
2、redis的keyspace notifications 會(huì)在key失效后發(fā)送一個(gè)事件,監(jiān)聽此事件的的客戶端就可以收到通知
(B)服務(wù)準(zhǔn)備:
1、修改reids配置文件(redis.conf)【window系統(tǒng)配置文件為:redis.windows.conf 】
redis默認(rèn)不會(huì)開啟keyspace notifications,因?yàn)殚_啟后會(huì)對(duì)cpu有消耗
備注:E:keyevent事件,事件以__keyevent@db>__為前綴進(jìn)行發(fā)布;
x:過期事件,當(dāng)某個(gè)鍵過期并刪除時(shí)會(huì)產(chǎn)生該事件;
原配置為:
notify-keyspace-events ""
更改 配置如下:
notify-keyspace-events "Ex"
保存配置后,重啟Redis服務(wù),使配置生效
[root@chokingwin etc]#
service redis-server restart /usr/local/redis/etc/redis.conf
Stopping redis-server: [ OK ]
Starting redis-server: [ OK ]
window系統(tǒng)重啟redis ,先切換到redis文件目錄,然后關(guān)閉redis服務(wù)(redis-server --service-stop),再開啟(redis-server --service-start)
C)文件代碼:
phpredis實(shí)現(xiàn)訂閱Keyspace notification,可實(shí)現(xiàn)自動(dòng)取消訂單,自動(dòng)完成訂單。以下為測(cè)試?yán)?/p>
創(chuàng)建4個(gè)文件,然后自行修改數(shù)據(jù)庫和redis配置參數(shù)
db.class.php
?php
class mysql
{
private $mysqli;
private $result;
/**
* 數(shù)據(jù)庫連接
* @param $config 配置數(shù)組
*/
public function connect()
{
$config=array(
'host'=>'127.0.0.1',
'username'=>'root',
'password'=>'168168',
'database'=>'test',
'port'=>3306,
);
$host = $config['host']; //主機(jī)地址
$username = $config['username'];//用戶名
$password = $config['password'];//密碼
$database = $config['database'];//數(shù)據(jù)庫
$port = $config['port']; //端口號(hào)
$this->mysqli = new mysqli($host, $username, $password, $database, $port);
}
/**
* 數(shù)據(jù)查詢
* @param $table 數(shù)據(jù)表
* @param null $field 字段
* @param null $where 條件
* @return mixed 查詢結(jié)果數(shù)目
*/
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 獲取全部結(jié)果
*/
public function fetchAll()
{
return $this->result->fetch_all(MYSQLI_ASSOC);
}
/**
* 插入數(shù)據(jù)
* @param $table 數(shù)據(jù)表
* @param $data 數(shù)據(jù)數(shù)組
* @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;
}
/**
* 更新數(shù)據(jù)
* @param $table 數(shù)據(jù)表
* @param $data 數(shù)據(jù)數(shù)組
* @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;
}
/**
* 刪除數(shù)據(jù)
* @param $table 數(shù)據(jù)表
* @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 'Redis2.class.php';
$redis = new \Redis2('127.0.0.1','6379','','15');
$order_sn = 'SN'.time().'T'.rand(10000000,99999999);
$use_mysql = 1; //是否使用數(shù)據(jù)庫,1使用,2不使用
if($use_mysql == 1){
/*
* //數(shù)據(jù)表
* 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延遲任務(wù)'); //3秒后回調(diào)
$test_del = false; //測(cè)試刪除緩存后是否會(huì)有過期回調(diào)。結(jié)果:沒有回調(diào)
if($test_del == true){
//sleep(1);
$redis->delete($order_sn);
}
echo $order_sn;
/*
* 測(cè)試其他key會(huì)不會(huì)有回調(diào),結(jié)果:有回調(diào)
* $k = 'test';
* $redis2->set($k,'100');
* $redis2->expire($k,10);
*
*/
psubscribe.php
?php
ini_set('default_socket_timeout', -1); //不超時(shí)
require_once 'Redis2.class.php';
$redis_db = '15';
$redis = new \Redis2('127.0.0.1','6379','',$redis_db);
// 解決Redis客戶端訂閱時(shí)候超時(shí)情況
$redis->setOption();
//當(dāng)key過期的時(shí)候就看到通知,訂閱的key __keyevent@db>__:expired 這個(gè)格式是固定的,db代表的是數(shù)據(jù)庫的編號(hào),由于訂閱開啟之后這個(gè)庫的所有key過期時(shí)間都會(huì)被推送過來,所以最好單獨(dú)使用一個(gè)數(shù)據(jù)庫來進(jìn)行隔離
$redis->psubscribe(array('__keyevent@'.$redis_db.'__:expired'), 'keyCallback');
// 回調(diào)函數(shù),這里寫處理邏輯
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";
//................
});*/
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); //密碼驗(yàn)證
$this->redis->select($db); //選擇數(shù)據(jù)庫
}
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系統(tǒng)測(cè)試方法:先在cmd命令界面運(yùn)行psubscribe.php,然后網(wǎng)頁打開index.php。
使監(jiān)聽后臺(tái)始終運(yùn)行(訂閱)
有個(gè)問題 做到這一步,利用 phpredis 擴(kuò)展,成功在代碼里實(shí)現(xiàn)對(duì)過期 Key 的監(jiān)聽,并在 psCallback()里進(jìn)行回調(diào)處理。開頭提出的兩個(gè)需求已經(jīng)實(shí)現(xiàn)。可是這里有個(gè)問題:redis 在執(zhí)行完訂閱操作后,終端進(jìn)入阻塞狀態(tài),需要一直掛在那。且此訂閱腳本需要人為在命令行執(zhí)行,不符合實(shí)際需求。
實(shí)際上,我們對(duì)過期監(jiān)聽回調(diào)的需求,是希望它像守護(hù)進(jìn)程一樣,在后臺(tái)運(yùn)行,當(dāng)有過期事件的消息時(shí),觸發(fā)回調(diào)函數(shù)。使監(jiān)聽后臺(tái)始終運(yùn)行 希望像守護(hù)進(jìn)程一樣在后臺(tái)一樣,
我是這樣實(shí)現(xiàn)的。
Linux中有一個(gè)nohup命令。功能就是不掛斷地運(yùn)行命令。同時(shí)nohup把腳本程序的所有輸出,都放到當(dāng)前目錄的nohup.out文件中,如果文件不可寫,則放到用戶主目錄>/nohup.out 文件中。那么有了這個(gè)命令以后,不管我們終端窗口是否關(guān)閉,都能夠讓我們的php腳本一直運(yùn)行。
編寫psubscribe.php文件:
?php
#! /usr/bin/env php
ini_set('default_socket_timeout', -1); //不超時(shí)
require_once 'Redis2.class.php';
$redis_db = '15';
$redis = new \Redis2('127.0.0.1','6379','',$redis_db);
// 解決Redis客戶端訂閱時(shí)候超時(shí)情況
$redis->setOption();
//當(dāng)key過期的時(shí)候就看到通知,訂閱的key __keyevent@db>__:expired 這個(gè)格式是固定的,db代表的是數(shù)據(jù)庫的編號(hào),由于訂閱開啟之后這個(gè)庫的所有key過期時(shí)間都會(huì)被推送過來,所以最好單獨(dú)使用一個(gè)數(shù)據(jù)庫來進(jìn)行隔離
$redis->psubscribe(array('__keyevent@'.$redis_db.'__:expired'), 'keyCallback');
// 回調(diào)函數(shù),這里寫處理邏輯
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";
//................
});*/
注意:我們?cè)陂_頭,申明 php 編譯器的路徑:
這是執(zhí)行 php 腳本所必須的。
然后,nohup 不掛起執(zhí)行 psubscribe.php,注意 末尾的
[root@chokingwin HiGirl]# nohup ./psubscribe.php
[1] 4456 nohup: ignoring input and appending output to `nohup.out'
說明:腳本確實(shí)已經(jīng)在 4456 號(hào)進(jìn)程上跑起來。
查看下nohup.out cat 一下 nohuo.out,看下是否有過期輸出:
[root@chokingwin HiGirl]# cat nohup.out
Pattern:__keyevent@0__:expired
Channel: __keyevent@0__:expired
Payload: name
運(yùn)行index.php ,3秒后效果如上即成功
遇到問題:使用命令行模式開啟監(jiān)控腳本 ,一段時(shí)間后報(bào)錯(cuò) :Error while sending QUERY packet. PID=xxx
解決方法:由于等待消息隊(duì)列是一個(gè)長連接,而等待回調(diào)前有個(gè)數(shù)據(jù)庫連接,數(shù)據(jù)庫的wait_timeout=28800,所以只要下一條消息離上一條消息超過8小時(shí),就會(huì)出現(xiàn)這個(gè)錯(cuò)誤,把wait_timeout設(shè)置成10,并且捕獲異常,發(fā)現(xiàn)真實(shí)的報(bào)錯(cuò)是 MySQL server has gone away ,
所以只要處理完所有業(yè)務(wù)邏輯后主動(dòng)關(guān)閉數(shù)據(jù)庫連接,即數(shù)據(jù)庫連接主動(dòng)close掉就可以解決問題
yii解決方法如下:
查看進(jìn)程方法:
ps -aux|grep psubscribe.php
a:顯示所有程序
u:以用戶為主的格式來顯示
x:顯示所有程序,不以終端機(jī)來區(qū)分
查看jobs進(jìn)程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
終止后臺(tái)運(yùn)行的進(jìn)程方法:
清空 nohup.out文件方法:
cat /dev/null > nohup.out
我們?cè)谑褂胣ohup的時(shí)候,一般都和配合使用,但是在實(shí)際使用過程中,很多人后臺(tái)掛上程序就這樣不管了,其實(shí)這樣有可能在當(dāng)前賬戶非正常退出或者結(jié)束的時(shí)候,命令還是自己結(jié)束了。
所以在使用nohup命令后臺(tái)運(yùn)行命令之后,我們需要做以下操作:
1.先回車,退出nohup的提示。
2.然后執(zhí)行exit正常退出當(dāng)前賬戶。
3.然后再去鏈接終端。使得程序后臺(tái)正常運(yùn)行。
我們應(yīng)該每次都使用exit退出,而不應(yīng)該每次在nohup執(zhí)行成功后直接關(guān)閉終端。這樣才能保證命令一直在后臺(tái)運(yùn)行。
總結(jié)
以上所述是小編給大家介紹的使用PHP+Redis實(shí)現(xiàn)延遲任務(wù),實(shí)現(xiàn)自動(dòng)取消訂單功能,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!
您可能感興趣的文章:- PHP實(shí)現(xiàn)電商訂單自動(dòng)確認(rèn)收貨redis隊(duì)列
- PHP swoole和redis異步任務(wù)實(shí)現(xiàn)方法分析