-1

Ive got a dev website home page that is 8mb (mostly due to large uncompress images, this is a dev website so this will all be sorted out and be <1mb for production).

When ive FTP'ed the site to a test server and noticed when i download view the site it takes about 8 seconds to download all of the site and assets (this is viewed from the network tab in chrome).

My internet connection is give or take 10mbps download as stated by the provided (British Telecom) and checked via speedtest.net

What im wandering is if the site is 8mb and the broadband is 10mbps why does it take c. 8 second to download the uncached site, shouldn't it be taking 0.8s ?

sam
  • 4,359

1 Answers1

2

By "8mb", you're probably saying "8 mebibytes", or "8MiB".

You have a 10Mbps downstream connection, which means "10 megabits per second".

8MiB / 10Mbps ≈ 6.711 seconds

Considering that there are also DNS lookups, other elements on the page to request, actually sending the requests to the server, and latency to the server, 8 seconds is perfectly reasonable.

Deltik
  • 19,971