Tornado 2.1 released
tornadoweb.org
Tornado 2.1 released
1–10 of 36 posts
Re: Tornado 2.1 released
#2Re: Tornado 2.1 released
#390% made up my mind to use Tornado for several upcoming projects, would love to hear some comments (good or bad) from anyone thats used it or using it.
It is simple enough, the code is clear and small enough to dive into if you have any problems, and it works just great.
Re: Tornado 2.1 released
#490% made up my mind to use Tornado for several upcoming projects, would love to hear some comments (good or bad) from anyone thats used it or using it.
Re: Tornado 2.1 released
#590% made up my mind to use Tornado for several upcoming projects, would love to hear some comments (good or bad) from anyone thats used it or using it.
When speed isn't important and you know you want to use a SQL database; then use Django. For everything else, use Tornado. :)
Re: Tornado 2.1 released
#690% made up my mind to use Tornado for several upcoming projects, would love to hear some comments (good or bad) from anyone thats used it or using it.
Re: Tornado 2.1 released
#790% made up my mind to use Tornado for several upcoming projects, would love to hear some comments (good or bad) from anyone thats used it or using it.
Some personal experiences: With Django, I specifically don't like ORM and it's template language. Also, I thought the admin interface would reduce the need to write input UIs, but at the end of the day, it's not that suitable for end-user when you have several end-user roles with different access right patterns.
If you (read: I) are going to replace Django's template language and leave out ORM and admin interface out of Django, Django doesn't really shine anymore and simpler frameworks like Tornado provide cleaner base for your development.
Re: Tornado 2.1 released
#890% made up my mind to use Tornado for several upcoming projects, would love to hear some comments (good or bad) from anyone thats used it or using it.
Does anyone have experience with using this ?
Also, what do people use for form validation with Tornado ?
Re: Tornado 2.1 released
#9www.site.com/controller/action/params/?vars -> would route to ->
class controller(requestHandler):
def get_action(self, *params, **vars):
#do something
self.write(response)
def post_action2(self, *params, **vars):
#.... and so on ....Re: Tornado 2.1 released
#1090% made up my mind to use Tornado for several upcoming projects, would love to hear some comments (good or bad) from anyone thats used it or using it.
I've used both Django and Tornado and I vastly prefer Tornado. Some personal experiences: With Django, I specifically don't like ORM and it's template language. Also, I thought the admin interface would reduce the need to write input UIs, but at the end of the day, it's not that suitable for end-user when you have several end-user roles with different access right patterns. If you (read: I) are going to replace Djang…