Top "Zeromq" questions

ZeroMQ (ZMQ, 0MQ, ØMQ) is a high-performance, asynchronous, transport-class agnostic, messaging library, aimed at use in scalable, distributed and/or concurrent applications.

ZeroMQ vs Crossroads I/O

I am looking into using ZeroMQ as the messaging/transport layer for a fairly large distributed system, mainly targeting monitoring …

zeromq crossroads-io
How can I monitor/manage queue in ZeroMQ?

First of all, I'm new to ZeroMQ and message queue systems, so what I'm trying to do may be solved …

zeromq
node-gyp 'pkg-config: command not found' on mac 10.5.8 during npm install

Trying to do an npm install on mac-osx of github project. Don't see pkg-config in packages.json why would node-gyp …

node.js macos zeromq node-gyp pkg-config
ZeroMQ Message Size Length Limit?

Suppose that several machines are interacting together using python's zeroMQ client. These messages are naturally formatted as strings. Is there …

zeromq pyzmq
zmq vs redis for pub-sub pattern

redis supports pub-sub zmq also supports pub-sub via a message broker What would be the architectural pros\cons for choosing …

architecture redis zeromq publish-subscribe design-consideration
0MQ: How to use ZeroMQ in a threadsafe manner?

I read the ZeroMq guide and I stumbled upon the following: You MUST NOT share ØMQ sockets between threads. ØMQ …

c# .net multithreading thread-safety zeromq
lost messages on zeromq pub sub

I'm trying to implement the pub sub design pattern using zeromq framework. The idea is to launch a subscriber and …

c++ publish-subscribe zeromq
Python + ZMQ: Operation cannot be accomplished in current state

I am trying to get a python program to communicate with another python program via zeromq by using the request-reply …

python python-3.x zeromq pyzmq
zmq send with NOBLOCK raise Resource temporarily unavailable

This code will raise Resource temporarily unavailable when call with NOBLOCK: context = zmq.Context() sender = context.socket(zmq.PUSH) sender.…

sockets zeromq pyzmq
Differences between AMQP and ZeroMQ

Recently started looking into these AMQP (RabbitMQ, ActiveMQ) and ZeroMQ technologies, being interested in distributed systems/computation. Been Googling and …

distributed-computing actor amqp zeromq