PHP的CURL是否会为不同句柄的curl请求重用连接?

时间:2015-05-13 05:17:16

标签: php curl

  • 讨论请求假设连接到同一目标主机
  • "把手" - >我的意思是从curl_init()
  • 返回
  • 即使来自CURLOPT_FORBID_REUSE选项的文档也没有提及是否设置了该选项,是否可以在不同的curl句柄中重复使用连接。

我搜索了很多,甚至是CURL的官方常见问题解答,但找不到明确的答案。

备注:与问题Reusing the same curl handle. Big performance increase?有关,但接受的答案没有明确回答,也没有官方参考。

1 个答案:

答案 0 :(得分:1)

也许这会回答你的问题:

curl.haxx.se/docs/faq.html#What_about_Keep_Alive_or_persist

curl and libcurl have excellent support for persistent connections when
transferring several files from the same server. Curl will attempt to reuse
connections for all URLs specified on the same command line/config file, and 
libcurl will reuse connections for all transfers that are made using the same 
libcurl handle.