PUBSUB NUMSUB

Syntax
PUBSUB NUMSUB [channel [channel ...]]
Available since:
2.8.0
Time complexity:
O(N) for the NUMSUB subcommand, where N is the number of requested channels
ACL categories:
@pubsub, @slow,

Returns the number of subscribers (exclusive of clients subscribed to patterns) for the specified channels.

Note that it is valid to call this command without channels. In this case it will just return an empty list.

Cluster note: in a Redis Cluster clients can subscribe to every node, and can also publish to every other node. The cluster will make sure that published messages are forwarded as needed. That said, PUBSUB's replies in a cluster only report information from the node's Pub/Sub context, rather than the entire cluster.

RESP2/RESP3 Reply

Array reply: the number of subscribers per channel, each even element (including the 0th) is channel name, each odd element is the number of subscribers
RATE THIS PAGE
Back to top ↑