These days, our project will be decoupled using MQ method, and RabbitMQ was selected because of its performance and durable ability. However, our product environment using CentOS-6.x, and because some other critical service already running on it, we can not upgrading boost-1.43 to boost-1.48 easily, so it also means we can not enjoy @alanxz 's SimpleAmqpClient.
I have already searched lot of info on the internet, other rabbitmq c++ client almost is just wrapper of rabbitmq-c library, but I found they seem not somewhat enterprise-class enough. rabbitmq-c was excellent, but the interface is too low, so I did some wrapper things by myself, the code list here:
https://github.com/taozhijiang/rabbitmq_cpp_wrapper
What I want to say is: I am new to RabbitMQ, but it seems short of easy library for C++, so is there any high-quality open-source project based on rabbitmq-c, or related books and docs, so I can figure out the correct usage of rabbitmq-c interface. Also, even my work currently is simple, If can figure out any mistake, I really appreciate it!
Thank you.