You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where the same web application is being coded with varying Python web
@@ -112,6 +112,18 @@ frameworks, templating engines and
112
112
and the many other pieces that combine to make web frameworks useful
113
113
to web developers.
114
114
115
+
*[12 requests per second](https://suade.org/dev/12-requests-per-second-with-python/)
116
+
examines how the traditionally synchronous web framework
117
+
[Flask](/flask.html) compares to an async framework like
118
+
[Sanic](/sanic.html) in an artificial, simple benchmark. The
119
+
results make it look like Sanic is far faster than Flask, but
120
+
once you add even a basic amount of functionality to a
121
+
project, including [databasel](/databases.html) queries
122
+
and templating, the results even out. Miguel Grinberg
123
+
also has a great read with broader results in this
124
+
article asking readers to
125
+
[Ignore All Web Performance Benchmarks, Including This One](https://blog.miguelgrinberg.com/post/ignore-all-web-performance-benchmarks-including-this-one).
126
+
115
127
* When you are learning how to use one or more web frameworks it's helpful
116
128
to have an idea of what the code under the covers is doing. This post on
0 commit comments