unsubscribe.3valkey - Man Page

Stops listening to messages posted to channels.

Synopsis

UNSUBSCRIBE channel [channel...]

Description

Unsubscribes the client from the given channels, or from all of them if none is given.

When no channels are specified, the client is unsubscribed from all the previously subscribed channels. In this case, a message for every unsubscribed channel will be sent to the client.

Reply

When successful, this command doesn’t return anything. Instead, for each channel, one message with the first element being the string unsubscribe is pushed as a confirmation that the command succeeded.

Complexity

O(N) where N is the number of channels to unsubscribe.

Acl Categories

@pubsub @slow

History

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), punsubscribe(3valkey), spublish(3valkey), ssubscribe(3valkey), subscribe(3valkey), sunsubscribe(3valkey)

Info

2024-09-23 8.0.0 Valkey Command Manual