Redis - PubSub Unsubscribe Command



Redis UNSUBSCRIBE command unsubscribes the client from the given channels, or from all of them if none is given.

Syntax

Following is the basic syntax of Redis UNSUBSCRIBE command.

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

Return Value

Array reply.

Example

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