美文网首页
Redis-发布订阅模式

Redis-发布订阅模式

作者: 超人001 | 来源:发表于2021-04-27 17:55 被阅读0次

SUBSCRIBE 订阅模式

127.0.0.1:6379> SUBSCRIBE runoobChar
Reading messages... (press Ctrl-C to quit)
1) "subscribe"
2) "runoobChar"
3) (integer) 1
1) "message"
2) "runoobChar"
3) "Redis PUBLISH test"
1) "message"

PUBLISH 发布模式

127.0.0.1:6379> PUBlish  runoobChar 'hello'
(integer) 1

相关文章

网友评论

      本文标题:Redis-发布订阅模式

      本文链接:https://www.haomeiwen.com/subject/pvzcrltx.html