Tagged Questions
Tornado is a scalable web server and web framework for Python specializing in handling thousands of simultaneous connections and real-time services.
17
votes
5answers
5k views
The latest recommendation for Comet in Python?
I'm going to be implementing Comet in Python (even though I hear good things about erlycomet I'm not thrilled about supporting an Erlang-based web server in addition to everything else in our back ...
16
votes
2answers
1k views
Differences between node.js and Tornado
Besides the fact that node.js is written in JS and Tornado in Python, what are some of the differences between the two? They're both non-blocking asynchronous web servers, right? Why choose one over ...
13
votes
1answer
895 views
When and how to use Tornado? When is it useless?
Ok, Tornado is non-blocking and quite fast and it can handle a lot of standing requests easily.
But I guess it's not a silver bullet and if we just blindly run Django-based or any other site with ...
13
votes
2answers
1k views
Tornado is “a relatively simple, non-blocking web server framework written in Python”--can somewhat explain what that means?
This is probably a stupid question, but what exactly is a "non-blocking web server"? All web servers are technically non-blocking, arent they? otherwise how could they handle simultaneous connections? ...
13
votes
4answers
2k views
What is Facebook's new Tornado framework?
Facebook just open-sourced a framework called Tornado.
What is it? What does it help a site do?
I believe Facebook uses a LAMP structure. Is it useful for smaller sites which are written under the ...
11
votes
2answers
2k views
Is 'epoll' the essential reason that Tornadoweb(or Nginx) is so fast?
Tornadoweb and Nginx are popular web servers for the moment and many benchmarkings show that they have a better performance than Apache under certain circumstances. So my question is:
Is 'epoll' the ...
10
votes
3answers
832 views
Python+Tornado vs Scala+Lift?
I'm looking to start a Google Maps based web application.
My initial thoughts are that in the first phase the focus should be on the front-end, and the backend should be easy to write and to ...
10
votes
2answers
797 views
Decorators vs. classes in python web development
I've noticed three main ways Python web frameworks deal request handing: decorators, controller classes with methods for individual requests, and request classes with methods for GET/POST.
I'm ...
8
votes
1answer
146 views
What are the possible ways to authenticate user when websocket connection is used?
Example scenario: Web based multi-user chat application through websocket connection. How can I ensure (or guarantee) that each connection in this application belongs to certain authenticated user and ...
8
votes
1answer
147 views
How do I determine the appropriate check interval?
I'm just starting to work on a tornado application that is having some CPU issues. The CPU time will monotonically grow as time goes by, maxing out the CPU at 100%. The system is currently designed ...
7
votes
3answers
2k views
Does anyone know of a asynchronous mysql lib for python?
I've been looking into non-blocking servers for python (tornado, twisted etc) but a lot of the benefits seems to be lost if there's no non-blocking connection to the database. Does anyone know if ...
6
votes
1answer
540 views
Tornado AsyncHTTPClient fetch callback: Extra parameters?
I'm sort of new to this whole async game (mostly been a Django guy), but I was wondering: how can I pass extra parameters to Tornado's AsyncHTTPClient.fetch callback? For example, I'm tracking the ...
6
votes
2answers
325 views
Is there any way to generate tornado localization CSV file like django makemessage?
Django makemessage could generate i18n files, and make it more easier to translate.
As I see, tornado has support both CSV format and gettext format, but I can only use CSV version, because I will ...
6
votes
1answer
87 views
What does this `_time_independent_equals` mean?
In the tornado.web module there is a function called _time_independent_equals:
def _time_independent_equals(a, b):
if len(a) != len(b):
return False
result = 0
for x, y in zip(a, ...
6
votes
4answers
896 views
Are there any open source C#-based non-blocking, event-based web server like Tornado?
I want to build a comet-based application and would like it to be able to sustain up to 1000 concurrent connections. As I understand, Tornado has the advantage of not spawning one thread per request ...
5
votes
1answer
239 views
Problems when storing WebSocket connection handle objects using jQuery.data() — what's the best thing to do?
I have an asynchronous queue worker running as a Tornado script on my server -- it hosts a subclass of Tornado's PeriodicTask, which consumes events from Redis. To monitor the queue, I set up a ...
5
votes
2answers
448 views
Help with Python 'Hello World' Error
I am trying to run the following HelloWorld Script at Command Line
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
from tornado.options import define, ...
5
votes
3answers
799 views
Web sockets / Tornado - Notify client on database update
I'm trying to use a Tornado web socket server to notify my user when changes are made to a database in realtime. I was hoping to use HTML5 web sockets for this, even though most browsers don't support ...
5
votes
2answers
455 views
Where to join threads created in an asynchronous tornado request handler?
This one has me a bit baffled. Fairly new to tornado and threading in python, so I could be completely off the mark with what I'm trying to do here.
Probably best to start with some simplified code:
...
5
votes
3answers
448 views
Tornado process data in request handler after return
In a tornado request handler if I have to call function foo() which doesn't affect what's returned to the user, it makes sense to return result to the user first and then call foo(). Is it possible to ...
5
votes
2answers
1k views
Multiple authentication options with Tornado
Just started playing with Tornado and want to offer multiple methods of authentication. Currently my app is working fine with Google's hybrid OpenID/oAuth using tornado.auth.GoogleMixin and the ...
5
votes
1answer
294 views
how do twisted/tornado et cetera work
I understand that they work in some way distinct from making a thread per user. How exactly does that work?
(Does 'non-blocking' have something to do with it?)
5
votes
5answers
326 views
Is there a better way to serve the results of an expensive, blocking python process over HTTP?
We have a web service which serves small, arbitrary segments of a fixed inventory of larger MP3 files. The MP3 files are generated on-the-fly by a python application. The model is, make a GET request ...
5
votes
4answers
4k views
REMOTE_ADDR not getting sent to Django using nginx & tornado
So I got a simple setup with nginx for static media and load balancing and tornado as webserver for django (4 servers running). My problem is remote_addr not getting passed on to django so I'm getting ...
4
votes
1answer
148 views
Streaming stdin/stdout in Python
I'm trying to stream a bash shell to/from a simple WebSockets UI, but I'm having trouble redirecting the IO. I want to start an instance of bash and connect stdout and stdin to write_message() and ...
4
votes
2answers
191 views
problem running hello world with tornado web server (Python 2.5,Win 7)
I am using Python 2.5 on Windows 7 (64bit).
I installed pycurl-7.15.5.1 (with win binaries) and tornado (using pip).
When I run the following hello world code:
import tornado.ioloop
import ...
4
votes
1answer
453 views
what's the tornado ioloop, and tornado's workflow?
i want to know tornado's internal workflow, and have seen this article, it's great, but something i just can't figure out
within the ioloop.py, there is such a function
def add_handler(self, fd, ...
4
votes
2answers
576 views
How do you *properly* query Redis from Tornado?
I'm curious what the recommended method of querying Redis (or any DB for that matter) is from Tornado.
I've seen some examples like https://gist.github.com/357306 but they all appear to be using ...
4
votes
2answers
2k views
Tornado web server/framework
I am a bit confused,Tornado http://www.tornadoweb.org/ is web server like a apache http server, or a framework like django, or both?
Thanks
4
votes
1answer
210 views
Comet issue with abandoned open connections
I am using some comet techniques including long polling and forever frame. I am using iframes for cross subdomain stuff. The one issue that I ran into while implementing these techniques is when a ...
4
votes
2answers
2k views
Using Tornado with Pika for Asynchronous Queue Monitoring
I have an AMQP server (RabbitMQ) that I would like to both publish and read from in a Tornado web server. To do this, I figured I would use an asynchronous amqp python library; in particular Pika (a ...
4
votes
3answers
921 views
Are there good docs about tornado.template?
everybody. Where can I find documentation or examples on tornado.template features such as include set import and apply? They appear to be in source code but I can't find examples and it's hard for me ...
4
votes
4answers
791 views
Giving my Python application a web interface to monitor it, using Tornado
I've got a Python application which is daemonized and running on a server 24/7. I'd like to be able to give an incredibly simple web interface so that I can monitor the changing values of a few ...
4
votes
4answers
2k views
chat application: pubsubhubbub vs xmpp
I'm unsure on the best stack to build a chat application. Currently I'm thinking of two main options:
facebook tornado
cons: does not use the main chat protocol xmpp but pubsubhubbub
pros: i really ...
4
votes
3answers
4k views
Asynchronous COMET query with Tornado and Prototype
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 ...
3
votes
1answer
185 views
Cassandra or MongoDB for good scaling and big amount of queries
I have the following situation. There are a lot of queries to database (commonly writing comments, reading profiles, etc...), and, I think will be more reads than writes. I want to have a good ...
3
votes
1answer
186 views
How to notify client's browser about some event on server?
I'm using python (Tornado) on server side and some javascript on a client side. I have the common situation - one user send a message to another. And I want server to notify client's browser (reciever ...
3
votes
1answer
66 views
Tornado translation facility and javascript
I am trying to make a bilingual website (English & Greek). I am using tornado and I put global function _() in my templates. The translation comes directly from a .csv. Everything is fine in html ...
3
votes
1answer
113 views
Memory Leaks Comet Server in PHP
Why would a Comet Server like Tornado be especially prone to memory leaks if written in PHP?
Are there genuine weaknesses particular to PHP for implementing a long polling framework/service like ...
3
votes
1answer
406 views
Django as middleware in a tornado app
I am trying to run tornadio (socket.io for python) to work with django. Is there are way to do something like this in tornado (running django as middleware), or can I access tornadio from within ...
3
votes
2answers
1k views
How do I stop Tornado web server?
I've been playing around a bit with the Tornado web server and have come to a point where I want to stop the web server (for example during unit testing). The following simple example exists on the ...
3
votes
2answers
454 views
Starting Tornado with Nginx on Ubuntu 10.04 automatically with domain name
I've managed to set up my nginx.conf file and it looks like this:
root www www;
worker_processes 1;
worker_rlimit_nofile 8192;
events {
worker_connections 8000;
accept_mutex off;
}
...
3
votes
2answers
2k views
Setting up Tornado with Nginx on Ubuntu 10.04 for production use
I understand that there's an nginx configuration file at http://www.friendfeed.com
But i don't really know how to set up Tornada for production use on Ubuntu 10.04 with Nginx.
Here's my situation and ...
3
votes
1answer
409 views
of tornado and blocking code
I am trying to move away from CherryPy for a web service that I am working on and one alternative that I am considering is Tornado. Now, most of my requests look on the backend something like:
get ...
3
votes
2answers
687 views
Python Tornado - Simple Question about handlers
so I have a handler below:
class PublishHandler(BaseHandler):
def post(self):
message = self.get_argument("message")
some_function(message)
self.write("success")
The ...
3
votes
1answer
354 views
What is twisted's equivalent of tornado's IOLoop.add_callback?
I'm trying to adapt some tornado code to work with twisted.
Tornado's IOLoop has a function (add_callback) that will essentially call the function back in the next iteration of the loop. As far as I ...
3
votes
2answers
991 views
Starting Tornado Web
I'm quite new to using Tornado Web as a web server, and am having a little difficulty keeping it running. I normally use Django and Nginx, and am used to start/stop/restarting the server. However with ...
3
votes
5answers
4k views
Google App Engine - Secure Cookies
I'd been searching for a way to do cookie based authentication/sessions in Google App Engine because I don't like the idea of memcache based sessions, and I also don't like the idea of forcing users ...
3
votes
4answers
1k views
Are Python global variables thread-safe?
edit: im asking if global variables are safe in a single-threaded web framework like tornado
im using the mongoengine orm, which gets a database connection from a global variable:
_get_db() # gets ...
3
votes
1answer
1k views
Getting Started with Tornado
After installing the necessary packages through apt (python 2.5, simplejson etc) I get an error when I try to run the demos.
: Request instance has no attribute 'responseHeaders'
...