Hacker News new | ask | show | jobs
by alexhultman 3314 days ago
I have in fact tested RabbitMQ but it was not at all impressive. The two fastest brokers I have found are emqtt and Mosquitto, both good at either large or small broadcasts but not both.

Edit: yes they are qos 0 (just like Redis)

2 comments

  > The two fastest brokers I have found are emqtt and Mosquitto
What about vernemq? I [ran across][1] a comment a while back about some tradeoffs with emqtt's usage of mnesia. Haven't gotten around to trying verne myself yet though.

[1]: https://github.com/erlio/vernemq/issues/83#issuecomment-1781...

We can have a big bench-off with more brokers later on. I have tested maybe 6 and from this I have decided to write my own. I wouldn't spend time reinventing the wheel for free if I didn't have a reason for it :) Then you also have memory usage which is impossible to optimize in VM/GC languages.
isn't the big + of rabbitmq that it can be configured HA, while the others can't?