Just curious after reading this, it wraps django using tornado. Is there any advantage or disadvantage of using tornado on django?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The biggest advantage is if you have an existing django codebase that you would like to enhance with some async operations. Tornado is a lean framework where DB Models, Django level templating, middleware, etc.etc. are not present.
That said, if you are starting from scratch on a project mixing Tornado + BackboneJS will yield a much more interesting application.