Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tornado web server/framework

I am a bit confused, Tornado is web server like a apache http server, or a framework like django, or both?

Thanks

like image 829
icn Avatar asked Feb 21 '11 20:02

icn


1 Answers

Tornado is a server and framework if you want to make some apps with it.

I use Tornado to serve my django apps, with help of nginx (load balancer to run more than 1 Tornado instance) and supervisor to make those tornados live if my apps fail.

I use WebFaction and the performance of my apps got better with Tornado instead of serving them with apache.

like image 63
panchicore Avatar answered Oct 24 '22 09:10

panchicore