Seeking an understanding of ServiceStack.Redis: IRedisClient.PublishMessage vs IMessageQueueClient.Publish
问题 I am having a hard time separating the IRedisClient.PublishMessage and IMessageQueueClient.Publish and realize I must be mixing something up. ServiceStack gives us the option to listen for pub/sub broadcasts like this: static IRedisSubscription _subscription; static IRedisClient redisClientSub; static int received = 0; static void ReadFromQueue() { redisClientSub = redisClientManager.GetClient(); _subscription = redisClientSub.CreateSubscription(); _subscription.OnMessage = (channel, msg) =>