From 0822674f70b05d42b87dfd82769cbc8222756468 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Fri, 11 Nov 2016 22:36:49 +0200 Subject: [PATCH] aiohttp is slightly faster actually Disabling access log increases RPS a lot --- tests/performance/aiohttp/simple_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/performance/aiohttp/simple_server.py b/tests/performance/aiohttp/simple_server.py index 8cb97b33..7c61f723 100644 --- a/tests/performance/aiohttp/simple_server.py +++ b/tests/performance/aiohttp/simple_server.py @@ -15,4 +15,4 @@ async def handle(request): app = web.Application(loop=loop) app.router.add_route('GET', '/', handle) -web.run_app(app, port=sys.argv[1]) +web.run_app(app, port=sys.argv[1], access_log=None)