ServiceStack Messaging API: Can it make a broadcast?
问题 As I have previously mentioned, I am using ServiceStack Messaging API ( IMessageQueueClient.Publish ) as well as the more low-level IRedisClient.PublishMessage . I use the Messaging API when I need a specific message/request to be processed by only one instance of a module/service, so even though I might have several modules running that all listens for MyRequest , only one service receives the message and processes it. I use the IRedisClient.PublishMessage when I do a broadcast, a pub/sub