redis 發布訂閱是一種消息通信模式:發送者put發送消息,訂閱sub者接收消息
redis 客戶端可以訂閱任意數量的頻道
訂閱者 打開客戶端訂閱 頻道,發送都 打開另一個客戶端發布對應頻道的消息
psubscribe pattern [pattern]
psubscribe it.* news.* con.*
pubsub channels 查看訂閱與發布系統狀態
publish channel message 將信息message 發送到 channel
publish it. '111'
punsubscribe [pattern [pattern ]] 退訂所有給定模式的頻道
subscribe channel [channel] 訂閱給定的一個工多個頻道信息
subscribe news it
unsubscribe [channel [channel]] 退訂給定的頻道