Reputation: 33
So guys, I'm using RabbitMQ and when I send the same message more than once per second of difference, I notice that some are not arriving. Does anyone know if RabbitMQ discards the new message with the same content if it still exists in the queue?
Upvotes: 0
Views: 116
Reputation: 480
You can send as many messages with the same message body (payload / content) to RabbitMQ as you want and they will be stored. The message body (payload / content) does not have to be unique.
Upvotes: 1