数据库
首页 > 数据库> > Redis实现订阅发布

Redis实现订阅发布

作者:互联网

Redis实现订阅发布

subscribe channel[channel…]
订阅给定的一个或多个频道的信息

127.0.0.1:6379> SUBSCRIBE maple # 订阅
Reading messages... (press Ctrl-C to quit)
1) "subscribe"
2) "maple"
3) (integer) 1
# 等待读取推送的消息
1) "message"
2) "maple" # 来自哪个频道的消息
3) "hello maple" # 消息内容
1) "message"
2) "maple"
3) "hello redis"

publish channel message
将信息发送到指定频道

127.0.0.1:6379> PUBLISH maple "hello maple" # 发布者发布消息到频道
(integer) 1
127.0.0.1:6379> publish maple "hello redis"
(integer) 1

使用subscribe订阅一个频道,publish发送一个消息,可以看到如上效果。

unsubscribe channel[channel…]
退订给定的频道

等等,看完得捋一捋~

标签:订阅,频道,0.1,Redis,发布,maple,hello,channel
来源: https://blog.csdn.net/weixin_42384085/article/details/111163879