Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
与 RabbitMQ 相比,将 Redis Pub/Sub 用于消息队列是否可靠?因为配置和维护一个 RabbitMQ 消息队列系统似乎比 Redis 复杂。
Redis 发布/订阅并不意味着可靠。它甚至不对消息进行排队。订阅者的任何崩溃都会导致消息丢失。
有一些方法可以使用 Redis 实现更安全的分布式机制,但不是使用 pub/sub。