What is Tornado?

Tornado is a web server and web application framework written in Python. Unlike mainstream web server frameworks, Tornado is an asynchronous non-blocking server. Thanks to non-blocking and the use of the epoll model, Tornado is a real-time web service An ideal framework, it is very suitable for the development of long polling, WebSocket and applications that need to establish a persistent connection with each user.

Guess you like

Origin blog.csdn.net/weixin_47542175/article/details/114254858