8

我设置了 CURLOPT_CONNECTTIMEOUT_MS = 200 和 CURLOPT_TIMEOUT_MS = 70 毫秒。但我看到 CURLINFO_TOTAL_TIME 大约是 220 毫秒。

根据 libcurl 文档,CURLOPT_TIMEOUT_MS 还包括连接超时。所以基本上我的 curl 调用总时间不应该超过 70 毫秒。但为什么它需要更多的控制权?

有人可以解释这种行为。

我正在使用 curl 7.19_02 C++ 库。

这是我的代码

CURL * curl;
curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl,CURLOPT_CONNECTTIMEOUT_MS,200);
curl_easy_setopt(curl,CURLOPT_TIMEOUT_MS,70);
curl_easy_setopt(curl, CURLOPT_HEADER, 0);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writer);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response);
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); 

double tt = 0.0;
double ns = 0.0;
double ct = 0.0;
double pt = 0.0;
double st = 0.0;

curl_easy_perform(curl);

int curlRC = curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME, &tt);
curlRC = curl_easy_getinfo(curl, CURLINFO_NAMELOOKUP_TIME, &ns);
curlRC = curl_easy_getinfo(curl, CURLINFO_CONNECT_TIME, &ct);
curlRC = curl_easy_getinfo(curl, CURLINFO_PRETRANSFER_TIME, &pt);
curlRC = curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME, &st);

cout << "Curl timing info: Total: " << tt << endl << " Lookup: "<< ns << endl << "    Connect: " << ct << "\n" << "pre transfer: " << pt << endl << "start transfer: " << st <<endl;

我得到的时间信息如下。请检查一下

卷发时间信息:总计:0.216793

查找:0.000999

连接:0.023199

预转账:0.023213

开始传输:0.216667

所以关键是,预传输和开始传输之间发生了什么?

4

2 回答 2

2

这是 libcurl 版本 7.20.0 之前的错误。使用 7.20.1 的输出与预期的一样:

Curl timing info: Total: 0.071098
Lookup: 0.000116
Connect: 0.000303
pre transfer: 0.000327
start transfer: 0

我找不到修复错误的变更集。但可能在cURL 更改中的“亚秒级超时改进”中

于 2013-12-01T20:53:08.840 回答
0

所以关键是,预传输和开始传输之间发生了什么?

这是服务器计算您的结果(处理您的请求)并准备发送响应的第一个字节所花费的实际时间。简而言之,这是请求的实际服务器时间,您希望这是最大的部分

于 2013-10-12T16:56:27.557 回答