On 26 June 2014 at 07:47:00, Ye Wang ([email protected]) wrote: > > I am a newbie to RabbitMQ and AMQP protocol. Is that that even > possible? I noticed that there is a message TTL I can play with > but if the message can be removed in the queue when all the consumers > retrieved the message, that will be great.
A single message is never delivered to multiple consumers. Messages are distributed at *routing* stage (exchange => one or more queues), not delivery. See http://www.rabbitmq.com/tutorials/amqp-concepts.html. So sounds like what you want is a fanout exchange, one queue per consumer with auto-delete attribute set to true. By the way, RabbitMQ mailing list has a new home: https://groups.google.com/group/rabbitmq-users Please post your future questions and bug reports there :) -- MK Staff Software Engineer, Pivotal/RabbitMQ -- You received this message because you are subscribed to the Google Groups "rabbitmq-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/rabbitmq-discuss. For more options, visit https://groups.google.com/d/optout.
