Open source version of scalable, non-blocking web server that power FriendFeed
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, 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.)
-
4
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout systemsmanagement:saltstack:bundle:next/saltbundlepy-tornado && cd $_
- Create Badge
Source Files
Filename | Size | Changed |
---|---|---|
fix-wheel-cp.patch | 0000000333 333 Bytes | |
ignore-resourcewarning-doctests.patch | 0000001442 1.41 KB | |
saltbundlepy-tornado-rpmlintrc | 0000000111 111 Bytes | |
saltbundlepy-tornado.changes | 0000061265 59.8 KB | |
saltbundlepy-tornado.spec | 0000004191 4.09 KB | |
tornado-6.3.2.tar.gz | 0000508776 497 KB |
Revision 5 (latest revision is 9)
- New upstream release 6.3.2 (bsc#1211741, CVE-2023-28370) * Security improvements * Fixed an open redirect vulnerability in StaticFileHandler under certain configurations. * ``tornado.web`` * `.RequestHandler.set_cookie` once again accepts capitalized keyword arguments for backwards compatibility. This is deprecated and in Tornado 7.0 only lowercase arguments will be accepted. * What's new in Tornado 6.3.0 * The new `.Application` setting ``xsrf_cookie_name`` can now be used to take advantage of the ``__Host`` cookie prefix for improved security. To use it, add ``{"xsrf_cookie_name": "__Host-xsrf", "xsrf_cookie_kwargs": {"secure": True}}`` to your `.Application` settings. Note that this feature currently only works when HTTPS is used. * `.WSGIContainer` now supports running the application in a ``ThreadPoolExecutor`` so the event loop is no longer blocked. * `.AsyncTestCase` and `.AsyncHTTPTestCase`, which were deprecated in Tornado 6.2, are no longer deprecated. * WebSockets are now much faster at receiving large messages split into many fragments. * General changes * Python 3.7 is no longer supported; the minimum supported . Python version is 3.8 Python 3.12 is now supported . * To avoid spurious deprecation warnings, users of Python 3.10 should upgrade to at least version 3.10.9, and users of Python 3.11 should upgrade to at least version 3.11.1. * Tornado submodules are now imported automatically on
Comments 0