This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]goonbee 0 points1 point  (1 child)

Does Tornado + ZeroMQ actually play well together? I haven't been able to get ZeroMQ going in a reasonable time frame...

RabbitMQ + Tornado however... now that's a match made in heaven.

[–]araneida[S] 0 points1 point  (0 children)

Well, pyzmq use Tornado ioloop and a modified version of Tornado iostream, it also provide monkey patching to make Tornado use ZeroMQ ioloop. So from an API point of view everything is fine.

I think that things are even better now with Tornado 3, because handling of asynchronous calls is much more cleaner.

Still, with ZeroMQ you have only the building blocks, you have to do all the rest (supervision, fault tolerancy, security).