From: Ben Darnell Date: Wed, 22 Jun 2011 06:04:39 +0000 (-0700) Subject: Add more prominent warning about incompatible changes in 2.0 X-Git-Tag: v2.1.0~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3486b46fcbcf9b71593686bd728015ecf93774eb;p=thirdparty%2Ftornado.git Add more prominent warning about incompatible changes in 2.0 --- diff --git a/website/templates/index.html b/website/templates/index.html index aad091520..0a194fcfe 100644 --- a/website/templates/index.html +++ b/website/templates/index.html @@ -4,6 +4,14 @@

Tornado is an open source version of the scalable, non-blocking web server and tools that power FriendFeed. The FriendFeed application is written using a web framework that looks a bit like web.py or Google's webapp, but with additional tools and optimizations to take advantage of the underlying non-blocking infrastructure.

The framework is distinct from most mainstream web server frameworks (and certainly most Python frameworks) because it is non-blocking and reasonably fast. Because it is non-blocking and uses epoll or kqueue, it can handle thousands of simultaneous standing connections, which means it is ideal for real-time web services. We built the web server specifically to handle FriendFeed's real-time features — every active user of FriendFeed maintains an open connection to the FriendFeed servers. (For more information on scaling servers to support thousands of clients, see The C10K problem.)

+

Upgrading from Tornado 1.x

+ +

Tornado 2.0 introduces several potentially backwards-incompatible changes, + including in particular automatic escaping of template output. Users + who are upgrading from Tornado 1.x should see the + release notes for + information about backwards compatibility.

+

Quick links