redis 发布订阅
Posted 爱华顿g
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis 发布订阅相关的知识,希望对你有一定的参考价值。
redis官方网址:https://redis.io/
redis教程网址:https://www.runoob.com/redis/redis-pub-sub.html
一.官方描述
Redis 发布订阅(pub/sub)是一种消息通信模式,发送者发送消息,订阅者接收消息
Redis 可以订阅任意数量的频道
二.实现语法
2.1 订阅消息
subscribe channel名称
2.2 发布消息
publish channel名称 “消息”
2.3 使用通配符订阅消息
psubscribe *
2.4 其他命令
序号 |
命令及描述 |
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 ...]] |
以上是关于redis 发布订阅的主要内容,如果未能解决你的问题,请参考以下文章