Coming from php(mvc background), the only thing i don't like about tornado is that basically you have a Class per request, currently i'm in a process to refactor this so that:<p>www.site.com/controller/action/params/?vars
-> would route to -><p>class controller(requestHandler):<p><pre><code> def get_action(self, *params, **vars):
#do something
self.write(response)
def post_action2(self, *params, **vars):
#.... and so on ....</code></pre>