一、数据库通知介绍数据库通知是Redis 2.8版本新增加的功能,这个功能可以让客户端通过订阅给定的频道或者模式,来获知数据库中键的变化,以及数据库中命令的执行情况 分类: 键空间通知:“某个键执行了什么命令”的通知称为键空间通知(key-space notification) 键事件通知:键事件通知(key-event notification)关注的是“某个命令被什么键执行了” ...
原创
2021-12-06 14:28:20
225阅读
一、通知介绍通知是Redis 2.8版本新增加的功能,这个功能可以让客户端通过订阅给定的频道或者模式,来获知中键的变化,以及中命令的执行情况 分类: 键空间通知:“某个键执行了什么命令”的通知称为键空间通知(key-space notification) 键事件通知:键事件通知(key-event notification)关注的是“某个命令被什么键执行了” ...
原创
2022-04-09 09:57:19
1186阅读
void notifyKeyspaceEvent(int type, char *event, robj *key, int dbid) { sds chan; robj *chanobj, *eventobj; int len = -1; char buf[24]; /* If notifications for this class of events...
原创
2022-07-08 09:38:45
79阅读