> > if I understand gevent-socketio ( > https://github.com/abourget/gevent-socketio) correctly, it is the same > idea as Tornadio except that it replaces Tornado with Gevent. Is there any > alternative that does not utilize Socket.io? If not, is there any working > code making Socket.io (ver. 0.7 or higher) works with web2py? So far, it > seems that no such working example exists for web2py, and the only attempt > (using Tornadio and Tornadio2) I've found failed. >
Well, according to the docs, gevent-socketio works with Socket.IO 0.7. It's made to work with WSGI frameworks, so I assume could work with web2py. Note, gevent is one of the server options in web2py's anyserver.py file: http://code.google.com/p/web2py/source/browse/anyserver.py#86. I haven't seen any code examples specifically for web2py, so I suppose you'll have to figure it out based on the gevent-socketio docs and examples. If you get it working, report back (maybe post a slice: www.web2pyslices.com). Anthony

