summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/pubsub-shardchannels.md
blob: 543eab0edc3d6000440b506a7eea48528123bf33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Lists the currently *active shard channels*.

An active shard channel is a Pub/Sub shard channel with one or more subscribers.

If no `pattern` is specified, all the channels are listed, otherwise if pattern is specified only channels matching the specified glob-style pattern are listed.

The information returned about the active shard channels are at the shard level and not at the cluster level.

@return

@array-reply: a list of active channels, optionally matching the specified pattern.

@examples

```
> PUBSUB SHARDCHANNELS
1) "orders"
PUBSUB SHARDCHANNELS o*
1) "orders"
```