标签:指定 redis发布订阅 message 一个 redis bsp news 多个 基本
Redis 通过 PUBLISH 、 SUBSCRIBE 等命令实现了发布与订阅模式。
一、发布订阅基本命令
#1.发布者 PUBLISH channel msg #将信息 message 发送到指定的频道 channel #2.订阅者 SUBSCRIBE channel [channel ...] #订阅频道,可以同时订阅多个频道 PSUBSCRIBE pattern [pattern ...] #订阅一个或多个符合给定模式的频道,每个模式以 * 作为匹配符,比如 it* 匹配所 有以 it 开头的频道( it.news 、 it.blog 、 it.tweets 等等)
标签:指定 redis发布订阅 message 一个 redis bsp news 多个 基本
原文地址:https://www.cnblogs.com/fengchong/p/10211586.html