Skip to content

Comment on How far can you go without a message queue?parent

Comments

ZeroMQ is not a messaging queue, but a messaging network library for broker-less communication.

ZeroMQ can perform as a messaging queue just as well in Pub/Sub.

In fact, ZeroMQ library (libzmq) supports over 13 different methods of queuing.

https://stackoverflow.com/questions/50656232/guaranteed-deli...

https://zguide.zeromq.org/

Most people when talking about a message queue mean something with a centralized broker. ZeroMQ has no broker (hence the Zero in the name), but maintains local non-durable queues between participating devices. When all is said-and-done it's similar behavior, but implemented very differently.

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.