<div>So, I am playing around with the POE module in an attempt to get the hang of using RabbitMQ. �I have written two programs, a producer and a consumer that operate on a single, persistent queue. �Everything seems to work, save for one thing: �In order to simulate failure, I have written the consumer to randomly not ack the messages it receives. �The problem is that the server does not seem to be re-delivering these messages. �If I kill and restart the consumer, it receives all of the messages it didn&#39;t ack. �If I leave it running, however, they never seem to be re-sent. �This concerns me because, if I have five consumers running, and they all kick back a failure on the same message (unlikely, yes, but possible), what happens to the message? �Does it stay undelivered forever? �How do I solve this problem?</div>
<div><br></div><div>Code is here: �<a href="http://pastie.org/3017289">http://pastie.org/3017289</a></div>