AMQP C++ implementation

前端 未结 6 639
天涯浪人
天涯浪人 2021-01-04 19:32

We are writing C++ code which needs messaging. Is there a free/open-source and stable AMQP server available that has equally stable C++ client library with it. We also need

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-04 20:06

    AMQP can be quite complex to understand -- I suggest Using Protocol Buffers to code your communication layer, it generates both python and C++. if your needs are too complicated I would suggest ICE as it supports every programming language you can think of, and I believe it also handles the protocol buffers format.

    -- edit --

    If you are going to use AMQP, you should look at Zero MQ. It has a C++ implementation of AMQP. However they are porting it to a pure-C implementation.

提交回复
热议问题