多个消费者一个队列
RabbitMQ 中是否可以让多个消费者共享一个队列?我目前正在使用这个 php 库 来与 RabbitMQ 配合使用,据我观察,虽然我有两个相同的消费者脚本实例正在运行,但只有一个实例会响应传递的消息......
Is it possible to make multiple consumers to share one single queue in RabbitMQ? I am currently using this php library to work with RabbitMQ, from what I observe, although I have 2 identical instances of a consumer script running, but only one would respond to the message passed...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望两个消费者都能看到所有消息,请为每个消费者提供自己的(可能是私有的)队列并将它们绑定到同一个交换。
If you want both consumers to see all messages, give each consumer its own (probably private) queue and bind them both to the same exchange.