Re: [zeromq-dev] Throttling publisher rates by using ZMQ_HWM doesn't work

2011-02-05 Thread Saurav Mohapatra
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

[zeromq-dev] Python rrbroker example

2011-02-05 Thread Lev Givon
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

[zeromq-dev] clrzmq2 Update

2011-02-05 Thread Michael Compton
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

Re: [zeromq-dev] Introduction and Best Practices Question

2011-02-05 Thread Adam Rosenberger
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

Re: [zeromq-dev] [PATCH] Fixed autogen.sh warnings on Debian 6 systems.

2011-02-05 Thread Martin Sustrik
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:

Re: [zeromq-dev] [PATCH] Fixed autogen.sh warnings on Debian 6 systems.

2011-02-05 Thread Mikko Koppanen
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

[zeromq-dev] [PATCH] Fixed autogen.sh warnings on Debian 6 systems.

2011-02-05 Thread chris
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