Pavel
Pavel

Reputation: 2554

Long time of "Request Sent" in Chrome

Our clients has issue that value of "Request sent" is 2.51 sec.

enter image description here

The google says, that "Request sent" is:

Time spent issuing the network request. Typically a fraction of a millisecond.

What may be reason of such long request sending?

Upvotes: 5

Views: 2680

Answers (1)

Eran Yogev
Eran Yogev

Reputation: 931

It's hard to see the details in the picture. Possible reasons:

  1. Your clients have a slow connection, or someone is abusing their bandwidth.
  2. The files they are trying to access are very large.
  3. The server has slow upload speed.
  4. GetDocuments is trying to download many documents.
    • Option A: multiprocess the downloads.
    • If you don't have to show all the documents at once, download them asynchronously and show what you have when you have it.

Upvotes: 3

Related Questions