Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does browsing speed depend on the browser?

Tags:

browser

Is browsing speed depends on browser (like IE,firefox)?

If it depends on browser which browser is best and works fast?

And if we clear the cache in browser will it slow down the browsing speed?

thanks.

like image 646
DonX Avatar asked Jan 11 '09 13:01

DonX


People also ask

Do different browsers have different download speeds?

Browsers (Chrome, Firefox, Edge, Safari, etc…) have different capabilities and may provide different results, particularly on high-speed connections.

Why is my browser so slow but everything else is fast?

Clear your browser cookies and cache Cookies and cache make up your temporary internet files, which slow down your computer in two ways. There might be a malware infection in your cache.

What determines browsing speed?

The rate at which you can transfer all of this data depends on your internet connection's bandwidth, measured in Mbps. On a home Wi-Fi network, your internet provider determines your internet speed. What you can get depends on the provider's technical capabilities and how much you're willing to pay for higher speeds.

Are some browsers faster than others?

If all web browsers used exactly the same code, they would all render pages equally fast (or slow.) However, each browser is coded differently so they render pages differently. Even different versions of the same browser are faster or slower than their predecessor.


1 Answers

Yes, it is dependent on the browser. Not just which browser, but also its configuration. There are lots of things which behave differently in different browsers. The same browser may be faster for only a subset of sites. Some factors are:

  • Rendering performance
  • Javascript performance (including individual methods)
  • Caching strategies (which vary a bit)
  • Whether HTTP pipelining is enabled by default
  • The default maximum number of HTTP connections
  • Whether compression etc, is supported
  • How soon during page loading the browser chooses to display or layout the page - this can have a big impact on user perception, even if overall load time is the same. Most browsers will make some attempt to render a page before it's finished loading at least some of the time, if it takes more than 1 sec or so.

Sadly there's no standard way of actually deciding that a page has even finished loading - some browsers don't count background images as part of the page load (Mozilla, for instance, fires onload events while background images are still loading).

like image 157
MarkR Avatar answered Sep 28 '22 19:09

MarkR