punsubscribe.3valkey - Man Page
Stops listening to messages published to channels that match one or more patterns.
Synopsis
PUNSUBSCRIBE
pattern [pattern...]
Description
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.
Reply
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.
Complexity
O(N) where N is the number of patterns to unsubscribe.
Acl Categories
@pubsub @slow
History
- Available since: 2.0.0
See Also
psubscribe(3valkey), publish(3valkey), pubsub(3valkey), pubsub-channels(3valkey), pubsub-help(3valkey), pubsub-numpat(3valkey), pubsub-numsub(3valkey), pubsub-shardchannels(3valkey), pubsub-shardnumsub(3valkey), spublish(3valkey), ssubscribe(3valkey), subscribe(3valkey), sunsubscribe(3valkey), unsubscribe(3valkey)