支出是将数据/要求上载到服务器的时间。 这发生在封锁和等待之间。 例如,如果我重新贴出伙伴关系司的网页,这将表明把申请(包括表格的数值和届会状态)上传回伙伴关系服务器所需时间。
放弃是请求发出后的时间,但在收到服务器的答复之前。 基本上,这是等待服务器回复的时间。
接收时间是从服务器下载回复的时间。
Blocking是国际不动产业联合会启动申请和吉大港不动产业协会要求进入电线之间的时间。
这些顺序如下:
- Blocking*
- DNS Lookup
- Connecting
- Sending
- Waiting
- Receiving
*Blocking and DNS Lookup might be swapped.
表格没有显示处理时间。
如果你有很长的阻挡时间,则管理浏览器的机器运行缓慢。 你们可以通过提升机器(更长的援助团、更快的加工商等)或减少其工作量(放弃不需要的服务、关闭方案等)来解决这一问题。
Long wait times indicate that your server is taking a long time to respond to requests. This either means:
- The request takes a long time to process (like if you are pulling a large amount of data from the database, large amounts of data need to be sorted, or a file has to be found on an HDD which needs to spin up).
- Your server is receiving too many requests to handle all requests in a reasonable amount of time (it might take .02 seconds to process a request, but when you have 1000 requests there will be a noticeable delay).
The two issues (long waiting + long blocking) are related. If you can reduce the workload on the server by caching, adding new server, and reducing the work required for active pages then you should see improvements in both areas.