In this Redis Pub/Sub topic
It says this:
"subscribe: means that we successfully subscribed to the channel given as the second element in the reply. The third argument represents the number of channels we are currently subscribed to."
And then it gives this Wire Protocol example:
SUBSCRIBE first second
*3
$9
subscribe
$5
first
:1
*3
$9
subscribe
$6
second
:2
What do the lines like *3 and $9 mean?