1

Does tornado's AsyncHTTPClient support HTTP persistent connection (HTTP keep-alive)? If yes, is there any sample code doing that?

I'll appreciate any advice.

sanyi
  • 5,999
  • 2
  • 19
  • 30
  • I assume you've read this discussion. http://stackoverflow.com/questions/1804013/tornado-web-persistent-connections. – John Oct 23 '12 at 03:05
  • Thanks, I am interested on how to do persistent HTTP requests (client side), not on how to handle them server side. And if I understand correctly your reference points to the second. – sanyi Oct 23 '12 at 07:16

1 Answers1

0

As of October 2012, Tornado's AsyncHTTPClient does NOT support persistent HTTP connections.

However, there's a pull request to add it.

Samat Jain
  • 15,758
  • 4
  • 20
  • 13