Re: [zeromq-dev] Help needed choosing socket strategy

2012-12-07 Thread Ian Barber
On Tue, Dec 4, 2012 at 8:38 PM, Adrian Ribao ari...@gmail.com wrote: context = zmq.Context() print Starting the proxy... # Listen for events sub = context.socket(zmq.SUB) sub.bind(tcp://*:) sub.setsockopt(zmq.SUBSCRIBE, '') # Emit events pub = context.socket(zmq.PUB)

[zeromq-dev] Help needed choosing socket strategy

2012-12-04 Thread Adrian Ribao
Hello everybody, my name is Adrián Ribao, i'm a python developer learning zeromq. I'm reading the guide, which is quite fun :) and I'm really impressed with the awesome job done with zeromq. Thank you for that! I'm creating a notification system for a website, and at this moment it's working ok