Danilobol
Danilobol

Reputation: 33

RabbitMQ - Sending the same message more than once to the queue (Some fail)

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

Answers (1)

ansd
ansd

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

Related Questions