1. SUBSCRIBE channel [channel ...]
订阅给定的一个或多个频道的信息。
起始版本:
2.0.0
时间复杂度:
O(N),其中 N 是订阅的频道的数量。
返回值:
接收到的信息
案例
# 订阅 channel1 频道
127.0.0.1:6379> SUBSCRIBE channel1
Reading messages... (press Ctrl-C to quit)
1) "subscribe" # 返回值的类型:显示订阅成功
2) "channel1" # 订阅的频道名字
3) (integer) 1 # 目前已订阅的频道数量
# 发布信息到频道
127.0.0.1:6379> PUBLISH channel1 'hello? any one here?'
(integer) 2
# 订阅方收到消息
1) "message" # 返回值的类型:信息
2) "channel1" # 来源(从那个频道发送过来)
3) "hello? any one here?" # 信息内容