zeromq Questions
2
Solved
In some Node.js scripts that I have written, I notice that even if the last line is a synchronous call, sometimes it doesn't complete before Node.js exits.
I have never seen a console.log statemen...
Malinda asked 27/4, 2015 at 21:52
2
I have two applications, a C++ server, and a C# WPF UI. The C++ code takes requests (from anywhere/anyone) via a ZeroMQ messaging [PUB/SUB] service. I use my C# code for back testing and to create ...
Gyratory asked 30/4, 2015 at 20:34
1
Solved
I am having trouble figuring out how to subscribe to a particularly "channel" with ZMQ with regard to its pub/sub functionality.
Here is the publisher:
var zmq = require('zmq');
var pub = zmq.soc...
1
Solved
I have a Dealer socket in client side, who is connected to Router socket in server side.
I often see Heartbeating mechanism : the server regularly send message to the client in order that client k...
Papyraceous asked 24/4, 2015 at 8:28
1
I have been reading about ZeroMQ more specifically about NetMQ and almost every Pub/Sub examples I saw used to Bind the Publisher socket and then the Subscriber socket connects to the other.
So i'...
2
Solved
I am having trouble installing the PyZMP dependency for iPython. I have tried a number of things such as using pip/brew, but ended up installing the package manually using this answer.
Now, pip li...
1
I'm building zeromq library for iOS using this method:
https://github.com/drewcrawford/libzmq-ios
The build log looks fine except of some warnings that appear 3 times:
CC crypto_scalarmult/curve...
1
Solved
ZeroMQs Pub/Sub pattern makes it easy for the server to reply to the right client. However, it is less obvious how to handle communication that cannot be resolved within two steps, i.e. protocols w...
Volplane asked 2/4, 2015 at 19:12
1
I want major difference between ZeroMQ and socket.io
Performance. ( Is it faster? Scalable? )
Applications. ( Is it used for real time services? )
Browsers Support. ( Which browsers are support...
2
Trying to do an npm install on mac-osx of github project. Don't see pkg-config in packages.json why would node-gyp expect this? It seems like the node-gyp should have incldued pkg-config. I thought...
Kingcup asked 13/3, 2015 at 1:25
1
Solved
I have three applications that are communicating via ZeroMQ all performing different operations. The different applications are as follows:
The first is a C++ application which is an engine for "...
Frau asked 16/3, 2015 at 12:8
1
There are some interesting descriptions of writing language kernels to allow a language previously unsupported by IPython to be executed from IPython.
In all cases, the kernel creation step involv...
2
Solved
Can you please tell me how you can use to send messages ZeroMQ between two programs located on different servers using some common socket?
With all local sockets program works, but I do not underst...
Fraya asked 24/1, 2013 at 21:30
1
Solved
I have an application in which I'd like to send part of its mutable state over the network to another machine (there will be a cluster of those machines) to do some CPU-intensive computations on it...
Rebecarebecca asked 26/1, 2015 at 11:22
3
I hit Ctrl-C while running a PAIR pattern (non-blocking client servers) connection with ZMQ. Later when I tried running the REQ-REP (blocking client single server connection) pattern, I keep gettin...
1
Solved
I read the followings:
DDS vs AMQP vs ZeroMQ
http://mnb.ociweb.com/mnb/MiddlewareNewsBrief-201004.html
And it seems that there is no benfit using DDS instead of zmq:
the latency of zmq ...
Coelostat asked 4/1, 2015 at 17:44
2
I have three applications talking to each other. A websocket server (1) that accepts connections from browsers, parses url to see what data is required, serves it to client if it has the data in me...
Garica asked 13/12, 2013 at 12:34
1
I used Dockerfile successfully built a container. However, my code doesn't work in the container. It does work if I install all the packages manually. I'm assuming I messed up something that cause ...
Circumgyration asked 17/12, 2014 at 7:50
3
Solved
While reading the zeromq guide, I came across client code which sends 100k requests in a loop, and then receives the reply in a second loop.
#include "../include/mdp.h"
#include <time.h>
i...
Catercousin asked 3/12, 2014 at 3:6
3
Solved
I am wondering how to shutdown JeroMQ properly, so far I know three methods that all have their pro and cons and I have no clue which one is the best.
The situation:
Thread A: owns context, shal...
1
Solved
I't trying to get a python application running on Windows and I get an ZMQError: Protocol not supported
which is because ipc is not supported on windows.
From what I have read the change from ipc t...
4
redis supports pub-sub
zmq also supports pub-sub via a message broker
What would be the architectural pros\cons for choosing between them?
I'm aiming at points which are beyond the obvious use-cas...
Georgettageorgette asked 3/9, 2013 at 12:10
1
I have found a similar question, ZeroMQ: HWM on PUSH does not work, but it couldn't solve my problem.
I want to control the number of messages that the push socket queues, but it doesn't work and ...
4
Solved
Would have loved to use Amazon SQS if it provided some semblance of FIFO access, but the sequence seems to completely random.
Is there something that would provide me FIFO queuing as-a-cloud-servi...
Thesis asked 29/4, 2012 at 19:15
1
Solved
I am trying to use zero-mq.My requirement is very simple.I want to be able to communicate between two peers in a network.I came across this program in the examples in the book.
$ pub_server.py
im...
© 2022 - 2024 — McMap. All rights reserved.