向特定频道发布消息。
redis 127.0.0.1:6379> PUBLISH channel message
(integer) 0
我使用另一个 Redis 客户端订阅了频道。
redis 127.0.0.1:6379> SUBSCRIBE channel
Reading messages... (press Ctrl-C to quit)
1) "subscribe"
2) "channel"
3) (integer) 1
在 Redis 客户端中,我收到了所有已发布的消息。现在我想退订订阅的频道。但我无法在 Redis 客户端中输入取消订阅。当我使用 Ctrl+c 完整的 Redis 客户端退出。Redis Client 中如何编写取消订阅命令?