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.

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 …

apache nginx tornado epoll
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 …

twisted redis tornado
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 …

nginx ubuntu-10.04 tornado
tornado.gen.BadYieldError: yielded unknown object None

I`m using Python and Tornado to build basic apps with a jquery UI slider element. My goal is, when …

python tornado jquery-ui-slider
Spyder IDE fails to start on Windows 10 with Python 3.8

Note: this issue is fixed in Spyder 4.1.3! (original question) checking out Python 3.8 (x64) on Windows 10, I got into trouble when …

windows-10 tornado spyder pywin32 python-3.8
Tornado Asynchronous Handler

I am attempting to implement get_current_user in the RequestHandler for Tornado, but I need the call to block …

asynchronous tornado requesthandler
How to share data between requests in Tornado Web

I have the following use case for my Tornado web server: Upon POST requests entries can be made to the …

python tornado
what does @tornado.web.asynchronous decorator mean?

If code didn't use this decorator, is it non-blocking? Why this name is asynchronous, it means add decorator let code …

python tornado
how do I include quoted HTML in a Tornado Template?

I'm using Tornado Templates and one of my fields is a string that has HTML tags quoted in it, e.…

templates tornado
DateField is not rendered as type="date"

class Form(Form): plan_start = DateField('Plan Start', validators=[Required()]) this code will render this html. <input id="plan_…

python tornado wtforms