标签: python http tornado
Tornado AsyncHTTPClient 是否支持持久性(Keep-Alive)连接?官方文件对于此功能并不是那么清楚。
答案 0 :(得分:2)
默认情况下(使用simple_httpclient时),目前不支持持久连接(从Tornado 4.2开始)。配置为使用curl_httpclient时,支持持久连接。
simple_httpclient
curl_httpclient
AsyncHTTPClient.configure('tornado.curl_httpclient.CurlAsyncHTTPClient')