views:

202

answers:

5

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.

+1  A: 

Of course it has some effect - the algorithms used to render are not the same, also the downloading mechanism can differ.
I am sure there are a lot more differences.
I find that FF and Chrome work faster than IE.

Dror
+12  A: 

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).

MarkR
+2  A: 

Some links to browser speed tests:
js speed
lifehacker

Kb
+2  A: 

http://www.howtocreate.co.uk/browserSpeed.html

Chrome isn't reviewed here but it is very fast, especially on javascript heavy sites because it actually compiles javascript to machine code, see here

Of the mainstream current browsers IE7 is the slowest, but IE8 will be much faster apparently.

Christopher Edwards
+2  A: 

The Yahoo! Exceptional Performance team devised 34 Best Practices for Speeding Up Your Web Site.

They say that most of the response time is spend on retrieving the files. So every benefit in reducing the number of files to retrieve is also an advantage for the speed. Therefor the configurations for Caching, HTTP connections and parallel downloads is very important.

Gumbo