5

任何人都可以从下图中验证处理时间、延迟和响应时间公式。我对响应时间公式有一些疑问。

如果您与我的这些公式有冲突,请给我证明参考。

公式图片

4

3 回答 3

5

我会采取;

  • 最坏情况下的延迟为 T8 - T1 也经过时间
  • 处理时间 T6 - T3 也是响应时间,因为您可以从第一个字节开始处理并且仍然处理到最后一个字节。

如果您在获得最后一个字节之前无法在服务器上开始处理消息,那么您也必须使用最后一个字节来处理延迟,否则它会不一致。

我会假设服务器比客户端的性能调整得更高,即它可能从第一个数据包开始处理,但客户端可能需要整个消息来做任何有用的事情(这取决于客户端)

于 2012-09-06T16:00:47.487 回答
2

我同意彼得关于处理时间和最坏情况延迟的观点: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. 

还请看:

于 2012-09-06T19:09:41.070 回答
0

来自维基百科

在数据系统中,系统响应时间是从收到查询消息传输结束到开始向发起查询的站发送响应消息之间的时间间隔。

应该是 T5-T4(就像处理时间一样)。

于 2012-09-06T15:46:49.820 回答