From 79fcc1ce4087faa1d486ca69dff96635f7fd27bf Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 12 Oct 2018 13:28:07 -0400 Subject: [PATCH] uvloop --- README.md | 2 +- docs/source/index.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a8ca28e..757e788 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ if __name__ == '__main__': api.run() ``` -This gets you a ASGI app, with a production static files server pre-installed, jinja2 templating (without additional imports), and a production webserver (ready for slowloris attacks), serving up requests with gzip compression automatically. +This gets you a ASGI app, with a production static files server pre-installed, jinja2 templating (without additional imports), and a production webserver based on uvloop, serving up requests with gzip compression automatically. Class-based views (and setting some headers and stuff): diff --git a/docs/source/index.rst b/docs/source/index.rst index 8fd05c9..c57189a 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -41,7 +41,7 @@ But will it blend? api.run() -This gets you a ASGI app, with a production static file-server pre-installed, jinja2 templating (without additional imports), and a production webserver (ready for slowloris attacks), serving up requests with gzip compression automatically. +This gets you a ASGI app, with a production static file-server pre-installed, jinja2 templating (without additional imports), and a production webserver based on uvloop, serving up requests with gzip compression automatically. -------------