Top Low Hanging Fruit to Performance Optimize your Web Site and boost Business
Web Page Performance was one of the big topics at the Ajax Experience in Boston this week. Steve Souders - author of High Performance Web Sites and Even Faster Web Sites - talked about the top things to look into when analyzing web page performance.
Business impact on Web Site Performance
Steve presented some recently published studies from Google, Microsoft and Shopzilla showing how much of a business impact web page performance has. Google and Bing presented a study showing how many people leave the site with degrading page performance and many fewer clicks these users make. Lost users and fewer clicks lead to less generated revenue with their ads.
Shopzilla showed how they could boost their business and save on the hardware side by improving their web site performance:

Shopzilla Performance Summary
Top Low Hanging Fruits
In Steve Souders opinion, most of the web performance problems relate to how the web page is designed leading to issues like too many embedded resources, too large JavaScript files, missing compression and client side caching. Following is a list of some low hanging fruits in order to speed up web site performance. I am using the FREE dynaTrace AJAX Edition to visualize the individual use case scenarios:
Too many network roundtrips due to too many embedded resources
Analyze the actual network roundtrips when requesting a page. Not all embedded resources (like images, css, …) get loaded in parallel by the browser. Each browser has a set of physical network connections that are used to downloaded embedded objects. The following dynaTrace network view shows that – when accessing http://280slides.com/Editor – 172 .png images have to be loaded by the browser. It also shows how loading these objects gets deferred due to the network connection limitation of the browser.
Many embedded images slow down overall page page
You can use several different techniques to lower the amount of network roundtrips. If images are static think about client side caching. Or consider CSS Sprites to reduce the number of images by merging them into one bigger image. Another technique is Domain Sharding to overcome the network connection limitations.
No optimal use of Caching and Compression
Analyze the embedded objects for the usage of client side caching and compression. Static images can be cached on the browser to reduce network roundtrips on subsequent page requests. Look at the http response to analyze current cache settings and analyze if they could be cached in case they are not. Same thing holds true for compression. Large files can be compressed lowering the required network bandwidth.
Request details showing current cache and compression settings
Check out this blog entry by Puneet Sangal that gives guidance on content caching and compression.
JavaScript files blocking browser downloads
When JavaScript files are downloaded by the browser – the browser blocks all other activity, e.g.: downloading additional embedded images. This holds true for older browsers (IE 6, FF 3). Newer versions of these browsers at least parallel load other resources – but – once a JavaScript file is downloaded it will be executed. During execution all other tasks are stopped. Looking at the network request image above shows us that there was a big gab after one of the JavaScript files was downloaded. This tells us that the browser actually executed the JavaScript filed and postponed downloading of the remaining embedded objects. Looking at the JavaScript that got executed shows us where the time was actually spent:
JavaScript Execution blocking additional downloads
Check out this blog entry from webdigi – it explains how to avoid blocking content download by JavaScript
Failing network requests
AJAX Frameworks tend to dynamically load embedded objects for different reasons either using XHR (XmlHttpRequest), iFrames or by creating DOM objects. Incorrect constructed URLs lead to failing network requests. Using all different types of frameworks that use techniques like that make it hard to identify where in the JavaScript library these URLs are constructed. With the dynaTrace AJAX Edition you can solve this by drilling from the failed network request in the network view down to the PurePath view showing the JavaScript methods that executed the call:
JavaScript library dynamically constructs URLs
In the above example the JavaScript framework tried different network path patterns to retrieve a specific file. Each attempt caused a very expensive network roundtrip (>500ms) totalling up to several seconds to retrieve a certain file.
Any other low hanging fruits?
Books like those from Steve Souders or blog entries from the web performance community cover many approaches and checklists to speed up your web page. Please share your experience and post your feedback on this blog.




Top Low Hanging Fruit to Performance Optimize your Web Site and boost Business Performance, Scalability and Architecture – Java and .NET Application Performance Management (dynaTrace Blog)…
Thank you for submitting this cool story – Trackback from DotNetShoutout…
[...] Read the original post: Top Low Hanging Fruit to Performance Optimize your Web Site and boost Business Performance, Scalabil… [...]
[...] Top Low Hanging Fruit to Performance Optimize your Web Site and … document.write(''); Share and Enjoy: [...]
Thank you for another great post.
I look forward to many more entries with high quality info.
craigslist software Features
[...] and How to Measure Automated and Accurately by Andreas Grabner, Jan 13, 10 It is a fact that end user response time is critical for business success. The faster web pages are perceived the longer users tend to stay on the page and therefore spend [...]
other than the suggestions u mentioned above, i also recommend dsl speed which can boost ur internet connection somehow
[...] It by Andreas Grabner, Feb 10, 10 Web Site Performance is impacted by many factors and it also impacts your business. When a user interacts with the web site and it feels slow it can be caused by slowly executing [...]
[...] Performance is the key to business success for every eCommerce site. Zappos picked an Application Performance Management Solution that enabled them to deliver their #1 Core Value to their Clients: “Deliver WOW through Service” [...]
[...] [...]
[...] The negative impact of web site speed on business success has been shown by several studies by companies like Microsoft (Bing), Google or Yahoo – read my previous blog that summarizes these results. [...]
another great article, only gripe is the images are too small to read!