Redis发布订阅
Redis发布订阅(pub/sub)是一种消息通信模式:发送者(pub)发送消息,订阅者(sub)发送消息。微信、微博、关注系统!Redis客户可以订阅任意数量的频道。
订阅/发布消息图:
第一个:消息发布者,第二个:频道 第三个:消息订阅者!
Redis 发布订阅命令
下表列出了 redis 发布订阅常用命令:
序号 命令及描述
1 PSUBSCRIBE pattern [pattern ...] 订阅一个或多个符合给定模式的频道。
2 PUBSUB subcommand [argument [argument ...]] 查看订阅与发布系统状态。
3 PUBLISH channel message 将信息发送到指定的频道。
4 PUNSUBSCRIBE [pattern [pattern ...]] 退订所有给定模式的频道。
5 SUBSCRIBE channel [channel ...] 订阅给定的一个或多个频道的信息。
6 UNSUBSCRIBE [channel [channel ...]] 指退订给定的频道。
实例如下:
#发布者
127.0.0.1:6379> PUBLISH shidongcheng "heloo,shidonghceng" #发布者发布消息
(integer) 1
127.0.0.1:6379> PUBLISH shidongcheng "heloo,redis"
(integer) 1
#订阅者
127.0.0.1:6379> SUBSCRIBE shidongcheng #订阅频道
Reading messages... (press Ctrl-C to quit)
1) "subscribe"
2) "shidongcheng"
3) (integer) 1
1) "message"
2) "shidongcheng"
3) "heloo,shidonghceng"
1) "message"
2) "shidongcheng"
3) "heloo,redis"