Re: [zeromq-dev] zeromq low latency requests

2015-08-27 Thread Joss Gray
You could use zyre ( https://github.com/zeromq/zyre ) to create a network of worker nodes and then distribute tasks and collate results with a central server. On Thu, Aug 27, 2015 at 12:58 PM, Keith Brown keith6...@gmail.com wrote: at the moment I am using Python multiprocessing to process

Re: [zeromq-dev] zyre

2015-03-19 Thread Joss Gray
zbeacon broadcasts udp packets broadcast for discovery so they won't be able to cross subnets. You will have to change the broadcast domain like you mentioned. On Thu, Mar 19, 2015 at 11:08 PM, Andrew Hume and...@humeweb.com wrote: we’re trying to run tyre (actually, the gyre implementation)

[zeromq-dev] zhashx and zlistx

2015-03-17 Thread Joss Gray
Are zhash and zlist deprecated or are zhashx and zlistx preferred? ___ zeromq-dev mailing list zeromq-dev@lists.zeromq.org http://lists.zeromq.org/mailman/listinfo/zeromq-dev

Re: [zeromq-dev] zyre

2015-01-18 Thread Joss Gray
Are there any plans do a new stable release? On 18 Jan 2015 18:15, Pieter Hintjens p...@imatix.com wrote: Zyre has come along nicely, it works well and has a clean API. On Sun, Jan 18, 2015 at 4:37 PM, Andrew Hume and...@humeweb.com wrote: pieter, what is the status of zyre?

[zeromq-dev] Can't run CZMQ tests on OSX

2014-11-24 Thread Joss Gray
I having an issue running the unit tests on OSX. Josss-MacBook-Pro-2:czmq jossgray$ make check Making check in doc make[1]: Nothing to be done for `check'. CC src/src_libczmq_la-zgossip.lo CC src/src_libczmq_la-zsock.lo CC src/src_libczmq_la-zgossip_msg.lo CCLD

[zeromq-dev] Adding UUID to ZRE messages

2014-11-07 Thread Joss Gray
Currently ZRE messages are not uniquely identifiable ( AFAIK ) so if you receive the same message multiple times, particularly when there are multiple network adapters, you can't tell if the same message was sent 3 times, or received 3 times. Particularly SHOUT and WHISPER messages. You cant

Re: [zeromq-dev] Trouble compiling czmq under Visual Studio

2014-09-15 Thread Joss Gray
Visual studio builds seem to get broken quite a lot because of this. Probably because the Travis CI doesn't support msbuild. On Mon, Sep 15, 2014 at 8:48 AM, Tom Quarendon tom.quaren...@teamwpc.co.uk wrote: That certainly seems to have worked. Thank you. -Original Message- From:

[zeromq-dev] zyrecffi - python cffi wrapper for zyre

2014-08-28 Thread Joss Gray
I have started working on a python cffi wrapper for zyre. If anyone is interested, you can take a look here, https://github.com/jossgray/zyrecffi ___ zeromq-dev mailing list zeromq-dev@lists.zeromq.org http://lists.zeromq.org/mailman/listinfo/zeromq-dev

[zeromq-dev] Maximum time for reconnection

2014-01-30 Thread Joss Gray
Hi, I'm using a PUB / SUB socket combination. If have a simple server and client on two different machines communication over TCP. I've noticed that if I pull out the network cable, the connection is re established. Great! However after a certain point reconnection no longer occurs. What is