Hi I’m looking at adding a script/css bundling feature to my application.
However, I measured the before and after and found my load times were slower with the bundling enabled.
So I ended up creating a stripped down app to reproduce the problem.
IE8 with bundling:
http://www.webpagetest.org/result/120703_6F_eceb4e22ef68dbcdaf1e2cbbdb582b8c/
IE8 without bundling:
http://www.webpagetest.org/result/120703_WW_736e82a9615402808e7e576053a55634/
IE7 with bundling:
http://www.webpagetest.org/result/120703_43_ce50cf1c86acc9a5fc932d05c072698a/
IE7 without bundling:
http://www.webpagetest.org/result/120703_Q6_12e48c871ed502db160ce53a5dd39189/
The only browser where bundling seems faster is with IE7. I imagine this is because of it’s 2 connection limit per domain and blocking script downloads.
Am I missing something here? I’ve always read bundling scripts and css were a best practice. Is that not the case with newer browsers?