Top "Tornado" questions

Tornado is a scalable web server and web framework for Python specializing in handling thousands of simultaneous connections and real-time services.

tornado equivalent of delay

Is there an equivalent command in tornado for delay function without affecting the main process to sleep (thus the callbacks …

python tornado
Is Tornado really non-blocking?

Tornado advertises itself as "a relatively simple, non-blocking web server framework" and was designed to solve the C10k problem. …

python mysql tornado nonblocking
Differences between gevent and tornado

I understand that both tornado and gevent are asynchronous python frameworks. While reading the bottle documentation I found that gevent …

wsgi tornado gevent
How can Tornado serve a single static file at an arbitrary location?

I am developing a simple web app with Tornado. It serves some dynamic files and some static ones. The dynamic …

python tornado static-files
Tornado streaming HTTP response as AsyncHTTPClient receives chunks

I'm trying to write a Tornado request handler which makes asynchronous HTTP requests, and returns data to the client as …

python asynchronous tornado
Disable static file caching in Tornado

By default, Tornado puts a Cache-Control: public header on any file served by a StaticFileHandler. How can this be changed …

python caching tornado static-files
Python HTTP 599: Connection closed (Tornado)

I'm getting this error: HTTP 599: Connection closed [E 130405 11:43:14 web:1031] Uncaught exception GET /networks/1/sensors/1/alarm (127.0.0.1) while executing the following code: …

python tornado http-error connection-close
Tornado/Twisted - Celery - Gevent Comparison

I'm having a bit of trouble understanding the differences between these three frameworks: Tornado/Twisted Celery Gevent These three frameworks …

python twisted celery tornado gevent
Getting failed requests with apache benchmark on a load balanced Tornado site but none logged

Perhaps this is a question about ab rather than about Tornado but something doesn't make sense. I run the benchmark …

benchmarking tornado apachebench
uWSGI python highload configuration

We have a big EC2 instance with 32 cores, currently running Nginx, Tornado and Redis, serving on average 5K requests per …

python nginx tornado uwsgi high-load