▲ | HarHarVeryFunny 3 days ago | |||||||
IMO, recommending RabbitMQ depends on what language you are using and how well suited the available client libraries are to your use case. I used RabbitMQ a few years back on a C++ project, and at the time (has anything changed?) the best supported C++ client library seemed to be AMQP-CPP which isn't multi-thread safe, therefore requiring an application interface layer to need to be written to address this in a performant way. In our case we wanted to migrate a large legacy system from CORBA (point to point) to a more flexible bus-based architecture, so we also had to implement a CORBA-like RPC layer on top of Rabbit, including support for synchronous delivery failure detection, which required more infrastructure to be built on top of AMQP-CPP. In the end the migration was successful, but it felt like we were fighting AMQP-CPP a lot of the way. | ||||||||
▲ | SJC_Hacker 2 days ago | parent [-] | |||||||
Out of curiousity what was the issue with just wrapping the AMQP-CPP pub/sub calls around a mutex? | ||||||||
|