Martin,
most of my problems got solved by
a) using nanosleep() - stopped the cpu spikes
b) in the subscriber receive loop switching to zmq_poll() and doing a
msg_init and msg_close before and after the zmq_recv()
c) on the publisher side, using msg_init_data() with a noop_free() that
allows me to
I implemented the rrbroker example in Python. The code is licensed
under the MIT/X11 license.
Pull request here:
https://github.com/imatix/zguide/pull/28
Hi everyone,
Just announcing a small update to the clrzmq binding.
Details:
ZMQ:
Added static poll method (Poller) to Context
Added Recv with timeout to Socket
Added application wide reference counted Context to socket
ZMQExt:
Added Serializing and Deserializing Send and Recv extension methods
Thanks again Ian and Martin for the replies.
Martin I started sketching out and unit testing a simple prototype
that I believe is in line with your suggestion below. It is basically
a service lookup type design now. I built some adapter interfaces
around the C# binding so I can unit test each serv
On 02/05/2011 02:20 PM, Mikko Koppanen wrote:
> On Sat, Feb 5, 2011 at 12:55 PM, chris wrote:
>> Here is a patch to fix it:
>
> The patch looks good to me.
Applied to master.
Thanks!
Martin
___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http:
On Sat, Feb 5, 2011 at 12:55 PM, chris wrote:
> Here is a patch to fix it:
The patch looks good to me.
--
Mikko Koppanen
___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev
Building from git repo on a Debian 6 system results in the following when
running ./autogen.sh:
configure.in:9: warning: AC_INIT: not a literal: m4_esyscmd([./version.sh | tr -
d '\n'])
Here is a patch to fix it:
>From 79bd300fe213e7b0c8e0c8697bdce897a8e33193 Mon Sep 17 00:00:00 2001
From: Chr