I am very new to RabbitMQ.
I have set up a 'topic' exchange. The consumers may be started after the publisher. I'd like the consumers to be able to be able to receive messages that have been sent before they were up, and taht were not consumed yet.
The exchange is set up with the following parameters:
exchange_type => 'topic'
durable => 1
auto_delete => 0
passive => 0
The messages are published with this parameter:
delivery_mode => 2
Consumers use get() to retrieve the messages from the exchange.
Unfortunately, and message published before any client was up is lost. I have used different combinations.
I guess my problem is that the exchange does not hold messages. Maybe I need to have a queue between the publisher and the queue. But this does not seem to work with a 'topic' exchange where messages are touted by a key.
Any idea how I should proceed. I use the Perl binding Net::RabbitMQ (shouldn't matter) and RabbitMQ 2.2.0.