Redis – PubSub Unsubscribe Command

  • Post author:
  • Post category:Redis
  • Post comments:0 Comments

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 

Leave a Reply