Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Redis Pub/Sub: PUNSUBSCRIBE

PUNSUBSCRIBE [pattern [pattern ...]]

Redis PUNSUBSCRIBE command is used to unsubscribe 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.

Syntax:

PUNSUBSCRIBE [pattern [pattern ...]]

Available since

2.0.0.

Return Value

Array reply.

Return Value Type

Array

Example: Redis PUNSUBSCRIBE

redis 127.0.0.1:6379> PUNSUBSCRIBE mychannel 
1) "punsubscribe"
2) "a"
3) (integer) 1

Previous: PUBLISH
Next: SUBSCRIBE