ZeroMQ usage in web application: how frontend interacts with backend

I heard some facts about ZeroMQ, and I think it's very powerful thing. But now I try to imagine how it can be applied in web application.

Could you make an example of using ZeroMQ in web applications?

So, the first that strikes me - simple chat application. So, we need frontend and backend. I prefer using python+Tornado as backend. There is python lib for using ZeroMQ. It's clear. So, the next thing is frontend. In frontend I will use some javascript to interact with backend.

So, to do this I should use ajax calls, right? Are there some other ways to do it?

TIA!


The easiest way to do this is to map WebSockets to ZeroMQ sockets, which is quite simple with tornado and PyZMQ's ZMQStream objects. An example of such an app is the IPython Notebook. This approach has the downside of requiring websockets, which puts a limit on what browsers you can support. Of course, you could also map ajax calls with jQuery, etc. and handle the relay with async handlers in tornado.

A more sophisticated web:ZeroMQ app is the mongrel2 webserver.

The right choice for you is just going to depend on your communication patterns.

链接地址: http://www.djcxy.com/p/10424.html

上一篇: SQL参数和问号

下一篇: Web应用程序中的ZeroMQ用法:前端如何与后端进行交互