博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下使用curl查看http请求各阶段耗时
阅读量:5891 次
发布时间:2019-06-19

本文共 887 字,大约阅读时间需要 2 分钟。

  1. 准备文件模版(curl.txt)

\n            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\n

  2. 使用curl带以下参数请求

curl -w "@curl.txt" -o /dev/null -s https://www.sogo.com

  结果:

[@ ~]# curl -w "@curl" -o /dev/null -s https://www.sogo.com            time_namelookup:  0.004               time_connect:  0.014            time_appconnect:  0.141           time_pretransfer:  0.141              time_redirect:  0.000         time_starttransfer:  0.153                            ----------                 time_total:  0.165

 

转载于:https://www.cnblogs.com/lnlvinso/p/9775484.html

你可能感兴趣的文章
C的面向对象编程
查看>>
日志服务器架构设计
查看>>
使用Unity开发Android的几种调试方法
查看>>
C++ 基础笔记(一)
查看>>
编译内核出错:invalid option `abi=aapcs-linux' 解决办法
查看>>
System.Func<>与System.Action<>
查看>>
奢侈品行业-新手专题-亿邦动力网
查看>>
研一,就这样过去了一大半
查看>>
html框架集 js刷新页面方法大全
查看>>
求两个数中的较大值max(a,b)。(不用if,>)
查看>>
[翻译] EnterTheMatrix
查看>>
asp.net开源CMS推荐
查看>>
2014第18周四
查看>>
awk当中使用外部变量
查看>>
我所思考的生活,致半年后的自己
查看>>
putty 中文乱码解决方法
查看>>
4.使用Jackson将Json数据转换成实体数据
查看>>
Quartz中时间表达式的设置-----corn表达式 (转)
查看>>
url
查看>>
使用 IntraWeb (6) - 页面模板: TIWLayoutMgrHTML、TIWTemplateProcessorHTML
查看>>