Easy Tutorial
❮ Server Command Info Transactions Unwatch ❯

Redis Unsubscribe Command

Redis Publish Subscribe

The Redis Unsubscribe command is used to unsubscribe from one or multiple specified channels.

Syntax

The basic syntax for the redis Unsubscribe command is as follows:

redis 127.0.0.1:6379> UNSUBSCRIBE channel [channel ...]

Available Versions

= 2.0.0

Return Value

This command behaves differently across various clients.

Example

redis 127.0.0.1:6379> UNSUBSCRIBE mychannel
1) "unsubscribe"
2) "a"
3) (integer) 0

Redis Publish Subscribe

❮ Server Command Info Transactions Unwatch ❯