Tornado: FriendFeed's non-blocking Python web server is now open source
1–10 of 77 posts
Re: Tornado: FriendFeed's non-blocking Python web server is now open source
#2Website: http://www.tornadoweb.org/
Re: Tornado: FriendFeed's non-blocking Python web server is now open source
#3Re: Tornado: FriendFeed's non-blocking Python web server is now open source
#4Re: Tornado: FriendFeed's non-blocking Python web server is now open source
#5I could use this in apps today if it used twisted instead of reinventing it.
When we were developing this, we found that Twisted introduced as many problems as it solved in terms of incomplete features and bugs. The other protocols seem to have more attention than HTTP from what I could tell.
Re: Tornado: FriendFeed's non-blocking Python web server is now open source
#6Is this similar to EventMachine in Ruby?
Re: Tornado: FriendFeed's non-blocking Python web server is now open source
#7Thanks a lot, fellas. Asynchronous networking programming in Python is somewhat of a bear so it's really nice to see a tool get released that improves it!
Re: Tornado: FriendFeed's non-blocking Python web server is now open source
#8Re: Tornado: FriendFeed's non-blocking Python web server is now open source
#9Re: Tornado: FriendFeed's non-blocking Python web server is now open source
#10I could use this in apps today if it used twisted instead of reinventing it.
How many deployed web apps really use Twisted? There are like 3 web packages in Twisted, most of which are really buggy, and as far as I could tell, barely used (even they acknowledge this, see http://twistedmatrix.com/trac/wiki/WebDevelopmentWithTwisted ). When we were developing this, we found that Twisted introduced as many problems as it solved in terms of incomplete features and bugs. The other protocols seem to…
I'm not sure even that is true. When I used twisted to write the justin.tv chat server (which is essentially an irc server) I gave up on twisted's irc protocol implementation and wound up just using twisted as an I/O layer.