Performance comparison between ZeroMQ, RabbitMQ and Apache Qpid

后端 未结 7 1501
伪装坚强ぢ
伪装坚强ぢ 2020-12-12 09:36

I need a high performance message bus for my application so I am evaluating performance of ZeroMQ, RabbitMQ and Apache Qpid. To measur

7条回答
  •  南方客
    南方客 (楼主)
    2020-12-12 10:07

    I've tested c++/qpid

    I sent 50000 messages per second between two diferent machines for a long time with no queuing.

    I didn't use a fanout, just a simple exchange (non persistent messages)

    Are you using persistent messages? Are you parsing the messages?

    I suppose not, since 0MQ doesn't have message structs.

    If the broker is mainly idle, you probably haven't configured the prefetch on sender and receptor. This is very important to send many messages.

提交回复
热议问题