Redis2.8 后可以通过键空间通知(设置 notify-keyspace-events)接收那些以某种方式改变了Redis数据空间的事件通知,关于 Redis 键空间通知的文章有很多,这里只是记录个人在 Redis-x64-3.2 版本下实现过程中出现的问题。
config set notify-keyspace-events Ex
Ex,E(Keyevent events)代表键事件通知,x(Expired events)代表过期事件,每当有过期键被删除时发送
修改 - 887行 notify-keyspace-events Ex // 取消注释 修改 - 892行 notify-keyspace-events "" // 注释
1、notify-keyspace-events "" 为默认配置,需注释,否则键空间通知无法生效 2、notify-keyspace-events Ex 需顶格(不能有空格),否则启动会报错 " Invalid argument during startup: unknown conf file parameter "
redis-server ./redis.windows.conf
redis-cli psubscribe __keyevent@0__:expired
redis-cli setex name 10 coisini // 添加一个 key为name 过期时间为10s 值为coisini 的键