Can I publish messages to several channels within the same command using the glob-style pattern, such as Connection.GetSubscriber().Publish("room/*", "my message")
and the message gets published to all channels that match the pattern?
Maybe the above question makes little to no sense in case I misunderstand the basic pub/sub pattern in Redis. My understanding is that each Subscribe
command establishes a channel on the Redis server and hence the channels Ids are known to the server and hence when the server receives a publish command that it should have the ability to "fan out" published messages to all channels that match the glob-style pattern. Please correct if I am wrong.
Additional question, I assume I can also subscribe to multiple channels using the glob-style pattern, correct?
Thanks