Re: [zeromq-dev] ZeroMQ 4.2 release, planning

2016-10-01 Thread Luca Boccassi
On Tue, 2016-09-27 at 09:41 +0300, Doron Somech wrote: > Sorry for the late response, increasing the msg_t structure will be > great, however this will require changing a lot of binding. I think I remember we need it for the new socket types, is that correct? There is a large performance penalty

Re: [zeromq-dev] Connect to UDP Multicast CoT Server

2016-10-01 Thread Doron Somech
Udp only work with radio-dish. You can use pgm for pubsub. On Fri, Sep 30, 2016, 16:53 Craig Stutts ARA/SED wrote: > Hey guys, > > I'm new to network programming and I am having trouble connecting to a > Cursor on Target multicast UDP server using ZMQ 4.2.0 (master). I'm

Re: [zeromq-dev] recv() on a ZMQ_REQ socket is slow

2016-10-01 Thread Doron Somech
REQ-REP pattern is slow because zeromq is not tuned for one message at a time but for batch of messages. I suggest to use the dealer-router or better the client-server. You can use uuid or just sequnce number for request identifier. However if your use case is one message at the time so the