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.

ActiveMQ or RabbitMQ or ZeroMQ or

We'd be interested to hear any experiences with the pros and cons of ActiveMQ vs RabbitMQ vs ZeroMQ. Information about …

jms rabbitmq activemq message-queue zeromq
Performance comparison between ZeroMQ, RabbitMQ and Apache Qpid

I need a high performance message bus for my application so I am evaluating performance of ZeroMQ, RabbitMQ and Apache …

message-queue rabbitmq zeromq qpid
zeromq: how to prevent infinite wait?

I just got started with ZMQ. I am designing an app whose workflow is: one of many clients (who have …

python zeromq
Reserve a TCP port in Windows

I'd like to reserve a TCP port, to be bound by a service later, so that Windows doesn't inadvertently use …

windows network-programming zeromq
Why doesn't zeromq work on localhost?

This code works great: import zmq, json, time def main(): context = zmq.Context() subscriber = context.socket(zmq.SUB) subscriber.bind("…

python localhost zeromq
ZeroMQ + Protocol Buffers

ZeroMQ FAQ page suggest use of Google's protobuf as a way to serialise message content. Has anyone see a good …

protocols network-protocols zeromq
How to use Zeromq's inproc and ipc transports?

Im a newbie to ZERMQ. ZeroMQ has TCP, INPROC and IPC transports. I'm looking for examples using python and inproc …

python ipc zeromq inproc
node.js performance with zeromq vs. Python vs. Java

I've written a simple echo request/reply test for zeromq using node.js, Python, and Java. The code runs a …

java python node.js zeromq
Connecting to a remote IPython instance

I would like to run an IPython instance on one machine and connect to it (over LAN) from a different …

python ipython zeromq jupyter pyzmq
ImportError: cannot import name constants

I'm trying to run a simple piece of code using pyzmq. I am using Python 2.7 and pyzmq 14.5 $ python --version Python 2.7.6 $ …

python zeromq pyzmq