Talk:ZeroMQ

Latest comment: 6 months ago by RussellSenior in topic Sorting order?

ØMQ can outperform raw TCP in terms of throughput edit

"Utilizing a message batching technique, ØMQ can outperform raw TCP in terms of throughput" is a polemic claim made by the ØMQ developers, but it is (deliberately) misleading. Since TCP is (for the most time) the underlying transport, ØMQ does not and cannot "outperform" TCP in any way.

What ØMQ really does is send any number of messages that are in the buffer at the time the socket becomes ready in one batch. This is basically a "opportunistic, lucky chance Nagle's algorithm" without a timeout.

A more concise wording would be: ØMQ can maintain low latency while outperforming a very naive implementation sending individual small messages over a TCP_NODELAY socket by batching several messages into a batch opportunistically. It does, on the other hand, not incur the latency of a TCP socket with Nagle's algorithm enabled, as there is no fixed timeout.

Your point is correct and must be addressed but your suggestion does not seem more concise! Paul Beardsell (talk) 17:54, 7 May 2013 (UTC)Reply
As an aside what a great improvement 0MQ is over MQ generally! I once was given the great general advice: "MIddleware? Just say no!". 0MQ does a great job while avoiding some of the overly complex MQ implementations I have seen, where the implementation of the MQ and MQ-similar middleware often complicated rather than simplified the message queue problem being addressed. Paul Beardsell (talk) 17:54, 7 May 2013 (UTC)Reply
I've reworded that claim to be more accurate. I'm not sure if sending messages individually is "very naive"; opportunistic batching is very hard to do right, so typical apps (and frameworks) do not do it. Which is why 0MQ seems faster than "typical TCP apps". Pieter Hintjens (talk) 12:14, 14 June 2013 (UTC)Reply

Reader feedback: more eleberated description ... edit

Uwydoc posted this comment on 7 August 2013 (view all feedback).

more eleberated description of the common patterns, which are described in the 'Technology' section, would be helpful

I guess it should be pictures. --4th-otaku (talk) 01:21, 6 October 2013 (UTC)Reply

Sorting order? edit

Why is this sorting under the letter O (e.g. in https://en.wikipedia.org/wiki/Category:Message-oriented_middleware)? I looked for it under the letter Z and in the number (zero) 0, but amazingly found it under the letter O, which, I guess at least *appears* in the word, but not in the traditional first letter position. This seems to violate https://en.wikipedia.org/wiki/Principle_of_least_astonishment. Thanks. RussellSenior (talk) 01:33, 24 October 2023 (UTC)Reply