Question

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

Was it helpful?

Solution

You can subscribe to pattern-based channel subscriptions, but when you publish you are publishing to a single channel name. All matching subscriptions (whether specific or pattern-based) will receive the message. There is no "fan out", other than the glob-based subscriptions.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top