Asynchronous COMET query with Tornado and Prototype
- by grundic
Hello everyone.
I'm trying to write simple web application using Tornado and JS Prototype library. So, the client can execute long running job on server. I wish, that this job runs Asynchronously - so that others clients could view page and do some stuff there.
Here what i've got:
#!/usr/bin/env/ pytthon
import tornado.httpserver
import…