基本介绍
Redis 发布订阅(pub/sub)是一种消息通信模式:发送者(pub)发送消息,订阅者(sub)接收消息。
下图展示了频道 channel1 , 以及订阅这个频道的三个客户端 —— client2 、 client5 和 client1 之间的关系:
当有新消息通过 PUBLISH 命令发送给频道 channel1 时, 这个消息就会被发送给订阅它的三个客户端:
Redis 客户端可以订阅任意数量的频道。
Redis的Pub/Sub展示了最多一次消息传递语义。 顾名思义,这意味着消息将传递一次(如果有的话)。 消息由 Redis 服务器发送后,就不可能再次发送。 如果订阅者无法处理消息(例如,由于错误或网络断开连接),则消息将永远丢失。
简单案例demo
以下实例演示了发布订阅是如何工作的。在我们实例中我们创建了订阅频道名为 redisChat:
redis 127.0.0.1:6379> SUBSCRIBE redisChat Reading messages... (press Ctrl-C to quit) 1) "subscribe" 2) "redisChat" 3) (integer) 1
现在,我们先重新开启个 redis 客户端,然后在同一个频道 redisChat 发布两次消息,订阅者就能接收到消息。
redis 127.0.0.1:6379> PUBLISH redisChat "Redis is a great caching technique" (integer) 1 redis 127.0.0.1:6379> PUBLISH redisChat "Learn redis by w3cschool.cc" (integer) 1 # 订阅者的客户端会显示如下消息 1) "message" 2) "redisChat" 3) "Redis is a great caching technique" 1) "message" 2) "redisChat" 3) "Learn redis by w3cschool.cc"
基本命令介绍
序号 | 命令及描述 |
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 ...]] 指退订给定的频道。 |
PSUBSCRIBE pattern [pattern ...]
Redis Psubscribe 命令订阅一个或多个符合给定模式的频道。
每个模式以 * 作为匹配符,比如 it* 匹配所有以 it 开头的频道( it.news 、 it.blog 、 it.tweets 等等)。 news.* 匹配所有以 news. 开头的频道( news.it 、 news.global.today 等等),诸如此类。
redis 127.0.0.1:6379> PSUBSCRIBE mychannel Reading messages... (press Ctrl-C to quit) 1) "psubscribe" 2) "mychannel" 3) (integer) 1
返回值:接收到的信息。
PUBSUB subcommand [argument [argument ...]]
Redis Pubsub 命令用于查看订阅与发布系统状态,它由数个不同格式的子命令组成。
redis 127.0.0.1:6379> PUBSUB CHANNELS (empty list or set)
返回值:由活跃频道组成的列表。
PUBLISH channel message
Redis Publish 命令用于将信息发送到指定的频道。
redis 127.0.0.1:6379> PUBLISH mychannel "hello, i m here" (integer) 1
返回值:接收到信息的订阅者数量。
PUNSUBSCRIBE [pattern [pattern ...]]
Redis Punsubscribe 命令用于退订所有给定模式的频道。
redis 127.0.0.1:6379> PUNSUBSCRIBE mychannel 1) "punsubscribe" 2) "a" 3) (integer) 1
返回值:这个命令在不同的客户端中有不同的表现。
SUBSCRIBE channel [channel ...]
Redis Subscribe 命令用于订阅给定的一个或多个频道的信息。
redis 127.0.0.1:6379> SUBSCRIBE mychannel Reading messages... (press Ctrl-C to quit) 1) "subscribe" 2) "mychannel" 3) (integer) 1 1) "message" 2) "mychannel" 3) "a"
返回值:接收到的信息
UNSUBSCRIBE [channel [channel ...]]
Redis Unsubscribe 命令用于退订给定的一个或多个频道的信息。
redis 127.0.0.1:6379> UNSUBSCRIBE mychannel 1) "unsubscribe" 2) "a" 3) (integer) 0
返回值:这个命令在不同的客户端中有不同的表现。