Can I get the comparison between RabbitMQ and MSMQ. It will be helpful performance information on different factors are available.
1 Answers
I wrote a blog post a while back comparing MSMQ and RabbitMQ (among others):
http://mikehadlow.blogspot.co.uk/2011/04/message-queue-shootout.html
RabbitMQ gave slightly better performance than MSMQ, but both were comprehensively out performed by ZeroMQ. If performance is your main criteria, you should definitely look at ZeroMQ.
It's worth noting that RabbitMQ and MSMQ are very different beasts. MSMQ is a simple store-and-forward queue. It doesn't provide any messaging patterns, such as pub/sub, or routing. For anything beyond simple point-to-point messaging you'd probably want to use a service bus library such as NServiceBus or MassTransit on top of MSMQ.
RabbitMQ is a sophisticated server product that provides complex messaging patterns, topics and routing out-of-the-box. You also get centralized management and DR, something you'd have to implement yourself if you chose MSMQ.

- 9,427
- 4
- 45
- 37
-
3Hi! Would you mind to refresh your answer since it was written 3 years ago. Thank you! – NoWar Sep 01 '16 at 17:53
-
4@Dimi you are more than invited to do that. – Ofer Zelig Sep 23 '16 at 00:21
-
1What does DR mean? – Raja Anbazhagan Nov 28 '16 at 12:36
-
2@RajaAnbazhagan Disaster Recovery – Dan Def Dec 06 '16 at 17:33
-
9"MSMQ is a simple store-and-forward queue. It doesn't provide any messaging patterns, such as pub/sub, or routing." This is not accurate. MSMQ does support multicasting (pub/sub) and offers correlation Id's for identifying unique messages in the same queue. – Xipooo May 29 '17 at 18:12