订单超时,活动过期解决方案:php监听redis键重复触发引发事件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了订单超时,活动过期解决方案:php监听redis键重复触发引发事件相关的知识,希望对你有一定的参考价值。
参考技术A 订单超时,活动过期解决方案:php监听redis键重复触发引发事件Redis的2.8.0版本之后可用,键空间消息(Redis Keyspace Notifications),配合2.0.0版本之后的SUBSCRIBE 可以完成这个定时任务的操作了,定时的单位是秒。
1.我们先订阅频道称为 redisChat
2.现在,我们重新开启个redis客户端,然后在同一个频道redisChat发布消息,订阅者可以接收到消息。
接收到的消息如下:
3.Key过期事件的Redis配置
需要这里配置notify-keyspace-events的参数为“EX” .X代表了过期事件。notify-keyspace-events “Ex”保存配置后,重启Redis的服务,使配置生效。
PHP Redis实现订阅键空间通知
redis实例化类:
redis.class.php
1个
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18岁
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//遇到类别重复的报错,所有叫Redis2
classRedis2
private$redis;
publicfunction__construct($host= '127.0.0.1', $port= 6379)
$this->redis = newRedis();
$this->redis->connect($host, $port);
publicfunctionsetex($key, $time, $val)
return$this->redis->setex($key, $time, $val);
publicfunctionset($key, $val)
return$this->redis->set($key, $val);
publicfunctionget($key)
return$this->redis->get($key);
publicfunctionexpire($key= null, $time= 0)
return$this->redis->expire($key, $time);
publicfunctionpsubscribe($patterns= array(), $callback)
$this->redis->psubscribe($patterns, $callback);
publicfunctionsetOption()
$this->redis->setOption(\Redis::OPT_READ_TIMEOUT, -1);
过期事件的订阅:
psubscribe.php
1个
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_once'./Redis.class.php';
$redis= new\Redis2();
// 解决Redis客户端订阅时候超时情况
$redis->setOption();
$redis->psubscribe(array('__keyevent@0__:expired'), 'keyCallback');
// 回调函数,这里写处理逻辑
functionkeyCallback($redis, $pattern, $chan, $msg)
echo"Pattern: $pattern\n";
echo"Channel: $chan\n";
echo"Payl
oad: $msg\n\n";
//keyCallback为订阅事件后的回调函数,这里写业务处理逻辑,
//比如前面提到的商品不支付自动撤单,这里就可以根据订单id,来实现自动撤单
设置过期事件:
index.php
1个
2
3
4
require_once'./Redis.class.php';
$redis= new\Redis2();
$order_id= 123;
$redis->setex('order_id',10,$order_id);
先用命令行模式执行 psubscribe.php
在浏览器访问 index.php
效果如下:
以上是关于订单超时,活动过期解决方案:php监听redis键重复触发引发事件的主要内容,如果未能解决你的问题,请参考以下文章