In the last few years, there are several new async web frameworks. One of them is Starlette, I decided to evaluate it. The first step is to compare it basic performance with Tornado.
Starlette, using uvicorn, claims to be one of the fastest python web framework. I copied the codes directly from its website:
I run it with "uvicorn example:app", then measure rps using 'ab':from starlette.responses import PlainTextResponse async def app(scope, receive, send): assert scope['type'] == 'http' response = PlainTextResponse('Hello, world!') await response(scope, receive, send)
ab -n 1000 -c 10 127.0.0.1:8000/The result is on average 4200 requests per second.
I then run basic Tornado app, again with code copied directly from tornado website:
Using the same measurement, the ab result is a average 1900 requests/second.import tornado.ioloop import tornado.web class MainHandler(tornado.web.RequestHandler): def get(self): self.write("Hello, world") def make_app(): return tornado.web.Application([ (r"/", MainHandler), ]) if __name__ == "__main__": app = make_app() app.listen(8888) tornado.ioloop.IOLoop.current().start()
So it looks like Starlette/uvicorn is more than 2 times faster than Tornado. However, the code on Tornado website is actually not the best for production use. Just replace "app.listen(8888)" the second to last line with following:
(and put "from tornado.httpserver import HTTPServer" at the beginning of the file), its performance increases to 4700 requests/second, actually faster than Starlette.server = HTTPServer(app) server.bind(8888) server.start(0)
The code change to Tornado make the app start 4 processes instead of 1. Of course we can also do the similar for the Starlette app:
uvicorn --workers 4 example:appThe result now is 7500 requests/second, surpassing multi-process Tornado again.
These are superficial results that don't mean much. But it did make me appreciate the works that got into Tornado that keep it performant in these years.
Result Summary:
- Tornado (default): 1900 rps
- Startlette/uvicorn (default): 4200 rps
- Tornado (4 workers): 4700 rps
- Starlette/uvicorn (4 workers): 7500 rps
1 comment:
Playtech Slots and Casinos - MapYRO
Find Casinos near you. Trails are the best way to go to and 구리 출장마사지 play the 고양 출장안마 newest slot machines. 아산 출장샵 Free slot machines, 김천 출장안마 table games, 인천광역 출장안마 video poker, roulette,
Post a Comment