任何人都可以从下图中验证处理时间、延迟和响应时间公式。我对响应时间公式有一些疑问。
如果您与我的这些公式有冲突,请给我证明参考。
任何人都可以从下图中验证处理时间、延迟和响应时间公式。我对响应时间公式有一些疑问。
如果您与我的这些公式有冲突,请给我证明参考。
我会采取;
如果您在获得最后一个字节之前无法在服务器上开始处理消息,那么您也必须使用最后一个字节来处理延迟,否则它会不一致。
我会假设服务器比客户端的性能调整得更高,即它可能从第一个数据包开始处理,但客户端可能需要整个消息来做任何有用的事情(这取决于客户端)
我同意彼得关于处理时间和最坏情况延迟的观点:T6 - T3
但对于延迟,我会说它是 T7 -T1。我认为它是第一个字节的时间。
在 JMeter 中是:
JMeter measures the latency from just before sending the request to just
after the first response has been received. Thus the time includes all the processing
needed to assemble the request as well as assembling the first part of the response,
which in general will be longer than one byte. Protocol analysers (such as Wireshark)
measure the time when bytes are actually sent/received over the interface. The JMeter
time should be closer to that which is experienced by a browser or other application
client.
还请看: