• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

176
Views
"transferred over network" size larger than resource size

I am using XMLHttpRequest to read the json file and find that "transferred over network" is significantly larger than the resource size.enter image description here

xmlhttp.open("GET", "resources.json", true);

While others have resource size equal to or larger than "transferred over network". What happened to it? Should I be worried about this?

over 3 years ago · Santiago Trujillo
2 answers
Answer question

0

"Transferred" is the sum of the bytes for the total sent and received data in the displayed requests.

"Resource size" is the sum of the bytes for the received data, that's why they don't match.

Consider this example:

enter image description here

See how the Resources matches with the sum of received bytes for each request.

enter image description here

enter image description here

over 3 years ago · Santiago Trujillo Report

0

Transfered is the total amount of bytes traveled in both directions, while resource size is the size of received response body.

A HTTP request is composite of url, request headers, request body, response headers and response body.

See a sample message of a HTTP request:

POST / HTTP/1.1
Host: foo.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 13

say=Hi&to=Mom

Note that the content length header is only 13 bytes (only the say=Hi&to=Mom size),while this entire HTTP message contains 111 bytes.

For more details see the message format section at https://en.m.wikipedia.org/wiki/Hypertext_Transfer_Protocol

over 3 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error