What's new in Valkey 9.0? Discover new features and improvements. Read the announcement.
PUNSUBSCRIBE
Stops listening to messages published to channels that match one or more patterns.
Usage
PUNSUBSCRIBE [pattern ...]
Complexity
O(N) where N is the number of patterns to unsubscribe.
Since
2.0.0
ACL Categories
@pubsub, @slow
Command flags
PUBSUB, NOSCRIPT, LOADING, STALE, SENTINEL
Unsubscribes the client from the given patterns, or from all of them if none is
given.
When no patterns are specified, the client is unsubscribed from all the
previously subscribed patterns.
In this case, a message for every unsubscribed pattern will be sent to the
client.
Replies
RESP2
When successful, this command doesn't return anything. Instead, for each pattern, one message with the first element being the string punsubscribe is pushed as a confirmation that the command succeeded.
RESP3
When successful, this command doesn't return anything. Instead, for each pattern, one message with the first element being the string punsubscribe is pushed as a confirmation that the command succeeded.