Core Concepts of Tornado Framework
Tornado is an asynchronous networking library and web framework originally developed by FriendFeed. By utilizing non-blocking network I/O, it efficiently handles thousands of simultaneous connections, making it an ideal choice for persistent connections, WebSockets, and high-concurrency environments.
Key Mechanisms for High Performance
Asynchr ...
Posted on Mon, 18 May 2026 01:48:18 +0000 by adrian_quah
Understanding the Relationship Between Web Servers, WSGI, and Flask
Previously, there was some confusion about the relationship between Nginx, WSGI (or uWSGI, uwsgi), and Flask (or Django). After consulting some materials, the relationships have been clarified. In summary, from the moment a client sends an HTTP request to when Flask processes it, the request passes through three layers: the web server layer, th ...
Posted on Wed, 13 May 2026 09:43:01 +0000 by vinodkalpaka