Answers:
这是您要找的吗?
time wget http://example.com
rm foo; touch foo; python -m SimpleHTTPServer
和在另一:time wget --quiet --output-document=/dev/null localhost:8000/foo
,结果为2毫秒。我wget
对google.com(检索约1万个字符)进行了同样的处理,并获得了大约四分之一秒的时间。因此,在这种情况下,我们将启动/运行时间称为1%。然后,为了进行比较,我做到time curl file://foo
了大约4毫秒。
你可以按照这个答案卷曲
创建一个新文件curl-format.txt
,然后粘贴:
time_namelookup: %{time_namelookup}\n
time_connect: %{time_connect}\n
time_appconnect: %{time_appconnect}\n
time_pretransfer: %{time_pretransfer}\n
time_redirect: %{time_redirect}\n
time_starttransfer: %{time_starttransfer}\n
----------\n
time_total: %{time_total}\n
然后像这样运行curl:
curl -w "@curl-format.txt" -o /dev/null -s "http://wordpress.com/"