Hacker News new | ask | show | jobs
by GUNHED_158 4351 days ago
I was thinking why RabbitMQ and not ZeroMQ? just for my knowledge
2 comments

They solve slightly different (architecture) problems and they are on completely different ends of the message queue library spectrum of "usability vs. customizability".

RabbitMQ is a "batteries included" solution. ZeroMQ is a roll your own sort of library. If you just want a message queue use RabbitMQ. If you want to build your own message queue system (with complex or specific requirements) use ZeroMQ.

RabbitMQ was easier for me to develop a prototype to test out the idea.