node.js 监听redis 过期时间通知

定时任务提供一个redis解决方案

将redis.conf 中notify-keyspace-events Ex 前注释去掉

//监听redis 过期时间
const Redis = require('ioredis');
const CONF = {
  host: '*******',
  port: *****,
  prefix: ':',
  password: '',
  db: 1,
};

const redis = new Redis(CONF);
// 创建监听
redis.send_command(
  'config',
  ['set', 'notify-keyspace-events', 'Ex'],
  subExpired
);
// 存入一个四秒后会过期的键
redis.set('key', 'bar', 'EX', 40);
// 监听回调
function subExpired(err, res) {
  // 这里需要创建一个新的Redis对象
  // 因为 Connection in subscriber mode, only subscriber commands may be used
  const sub = new Redis(CONF);
  // 设置事件参数
  const expired_subKey = `__keyevent@${CONF.db}__:expired`;
  sub.subscribe(expired_subKey, function () {
    sub.on('message', function (info, msg) {
      console.log(info, msg);
    });
  });
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值