Redis的发布订阅

1 概念

进程间的一种消息通信模式:发送者(pub)发送消息,订阅者(sub)接收消息。

2 指令

2.1 可以一次性订阅多个,SUBSCRIBE c1 c2 c3
2.2 消息发布,PUBLISH c2 hello-redis
2.3 订阅多个,通配符*, PSUBSCRIBE new*
2.4 收取消息, PUBLISH new1 redis2015

代码片:

//端口1订阅频道:
127.0.0.1:6379> SUBSCRIBE c1 c2 c3
Reading messages... (press Ctrl-C to quit)
1) "subscribe"
2) "c1"
3) (integer) 1
1) "subscribe"
2) "c2"
3) (integer) 2
1) "subscribe"
2) "c3"
3) (integer) 3

//端口2发布消息
127.0.0.1:6379> PUBLISH c1 hello1
(integer) 1
127.0.0.1:6379> PUBLISH c2 hello2
(integer) 1
127.0.0.1:6379> PUBLISH c3 hello3
(integer) 1

//端口1接收消息
1) "message"
2) "c1"
3) "hello1"
1) "message"
2) "c2"
3) "hello2"
1) "message"
2) "c3"
3) "hello3"


//端口1订阅频道
127.0.0.1:6379> PSUBSCRIBE xx*
Reading messages... (press Ctrl-C to quit)
1) "psubscribe"
2) "xx*"
3) (integer) 1

//端口2发布消息
127.0.0.1:6379> PUBLISH xx1 lolololol
(integer) 1
127.0.0.1:6379> PUBLISH xx2 djdjdjdj
(integer) 1


//端口1接收消息
1) "pmessage"
2) "xx*"
3) "xx1"
4) "lolololol"
1) "pmessage"
2) "xx*"
3) "xx2"
4) "djdjdjdj"

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值