Redis PubSub Psubscribe命令
Redis PSUBSCRIBE 命令用于订阅与给定模式匹配的频道。
语法
以下是Redis PSUBSCRIBE 命令的基本语法。
redis 127.0.0.1:6379> PSUBSCRIBE CHANNEL_NAME_OR_PATTERN [PATTERN...]
以下列表展示了Redis中支持的一些模式。
- h?llo订阅hello、hallo和hxllo
- h*llo订阅hllo和heeeello
- h[ae]llo订阅hello和hallo, 但不包括hillo
示例
redis 127.0.0.1:6379> PSUBSCRIBE mychannel
Reading messages... (press Ctrl-C to quit)
1) "psubscribe"
2) "mychannel"
3) (integer) 1