Redis---B站学习---redis的发布订阅

Redis—B站学习—redis的发布订阅(作为消息中间件)

1.Redis的发布订阅是什么

  1. 进程间的一种消息通信模式:发送者(pub)发送消息,订阅者(sub)接收消息。
  2. 订阅/发布消息图(channel:通道,subscribe:订阅,client:客户端,publish:出版,message:消息)
    Redis---B站学习---redis的发布订阅
    Redis---B站学习---redis的发布订阅

2.Redis的发布订阅的命令

Redis---B站学习---redis的发布订阅

3.Redis的发布订阅的案例

先订阅后发布后才能收到消息,

  1. 可以一次性订阅多个,SUBSCRIBE c1 c2 c3
  2. 2 消息发布,PUBLISH c2 helloredis
  3. 订阅多个,通配符*PSUBSCRIBE new*
  4. 收取消息, PUBLISH new1 redis2015