问题
I've have multiple subscribers who are subscribed to the same Redis channel. Does Redis guarantee that all subscribers get all the messages that are pushed into the channel after the subscribers subscribes for the channel ?
回答1:
From redis docs
Messages sent by other clients to these channels will be pushed by Redis to all the subscribed clients.
I guess thats a Yes to your question.
来源:https://stackoverflow.com/questions/17255314/redis-multiple-subscribers