Tornado 2.0 released
groups.google.com
Tornado 2.0 released
1–10 of 34 posts
Re: Tornado 2.0 released
#2Re: Tornado 2.0 released
#3I know that nobody outside of the Python community cares, but it's disappointing to see that Tornado still doesn't use Twisted for its event handling.
Re: Tornado 2.0 released
#4I know that nobody outside of the Python community cares, but it's disappointing to see that Tornado still doesn't use Twisted for its event handling.
Tornado is the bare-bones essentials for an async web application server. Twisted is not. You can start with Tornado, then put Django or Twisted on top, but that's optional.
Besides, people are kind of scared of Twisted.
Re: Tornado 2.0 released
#5I know that nobody outside of the Python community cares, but it's disappointing to see that Tornado still doesn't use Twisted for its event handling.
Twisted is quite large nowadays http://twistedmatrix.com/trac/browser/trunk/twisted
Compare it to Tornado source, which is ~30 Python files https://github.com/facebook/tornado/tree/master/tornado
Re: Tornado 2.0 released
#6Re: Tornado 2.0 released
#7Re: Tornado 2.0 released
#8I know that nobody outside of the Python community cares, but it's disappointing to see that Tornado still doesn't use Twisted for its event handling.
Re: Tornado 2.0 released
#9I know that nobody outside of the Python community cares, but it's disappointing to see that Tornado still doesn't use Twisted for its event handling.
It would also have made porting tornado to python 3 a huge effort (given twisted code size).
Re: Tornado 2.0 released
#10I know that nobody outside of the Python community cares, but it's disappointing to see that Tornado still doesn't use Twisted for its event handling.