Is there any difference between using the default (direct) exchange than creating a custom direct exchange for each queue?
(default exchange) -> queue1
(default exchange) -> queue2
vs.
queue1_direct_exchange -> queue1
queue2_direct_exchange -> queue2
In the RabbitMQ dashboard I can see that if I use the default exchange for every queue it has more messages rate so I'm wondering if using different exchanges would increase the performance of message dispatching...
Thanks in advance!