Socket.io handler using Gevent / Tornado & Flask
can anyone show me and example of how to handle a generic socket.io connection (depends on the client browser, could be websockets, or xhr-longp开发者_高级运维olling, etc..) using gevent and flask, or maybe flask with tornado as an async server thank you
TornadIO works well enough with stable version of socket.io (0.6), it integrates into any Tornado-powered application as a common request handler, wrapped around class with socket events callbacks. Works pretty stable.
But I'd recommend not to use the provided SocketServer class and just configure correctly the common HTTPServer of Tornado, just take a look at SocketServer implementation as a guideline.
精彩评论