Web 2.0 Expo: Even Faster Web Sites

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

4 comments

Comments 1 - 4 of 4 previous next Post a comment

  • + praba_tuty praba_tuty 1 month ago
    Another important technique would be to cache frequently accessed data from database close to the web application. Open source in-memory products such as memcached, CSQL Cache can be used to cache frequently accessed data from the database.

    http://www.csqldb.com
  • + BrandMover Vellyslav Petrov 2 years ago
    My favorite web topic in the last 8 years is '0.03sec'.

    An awesome way to explain to web-disabled CEOs, that Performance is the only mission-critical factor for any website, CRM or SaaS, not the glossy Flash broshure, giving 'pleasure' solely to their own eyes.

    Great job Steve... as your book ;-)
  • + kuchmuch kuchmuch 2 years ago
    great tips - thanks for sharing!
  • + jboutelle Jonathan Boutelle 2 years ago
    This is *good*! Is this the next book? ;->
    We are big devotees of the first book at slideshare ... it has made our pages load a LOT faster (we went from a D- to an A- in two weeks for the front page. Still working on the 'slideview' page, which is what you’re looking at now).

    Any advice on how to handle external widgets (addthis, gigya wildfire) that screw up your grade on YSlow? We’re thinking of postloading them, but I’m open to other suggestions...
Post a comment
Embed Video
Edit your comment Cancel

Notes on slide 1

Permission to use photo given by Amnemona: http://www.flickr.com/photos/marinacvinhal/379111290/

45 Favorites, 1 Group & 1 Event

Web 2.0 Expo: Even Faster Web Sites - Presentation Transcript

  1. Steve Souders [email_address] http://stevesouders.com/ Even Faster Web Sites best practices for faster pages Disclaimer: This content does not necessarily reflect the opinions of my employer.
  2. The Importance of Frontend Performance 17% 83% iGoogle, primed cache 9% 91% iGoogle, empty cache
  3. Time Spent on the Frontend Empty Cache Primed Cache www.aol.com 97% 97% www.ebay.com 95% 81% www.facebook.com 95% 81% www.google.com/search 47% 0% search.live.com/results 67% 0% www.msn.com 98% 94% www.myspace.com 98% 98% en.wikipedia.org/wiki 94% 91% www.yahoo.com 97% 96% www.youtube.com 98% 97%
  4. The Performance Golden Rule 80-90% of the end-user response time is spent on the frontend. Start there. greater potential for improvement simpler proven to work
  5. 14 Rules
    • Make fewer HTTP requests
    • Use a CDN
    • Add an Expires header
    • Gzip components
    • Put stylesheets at the top
    • Put scripts at the bottom
    • Avoid CSS expressions
    • Make JS and CSS external
    • Reduce DNS lookups
    • Minify JS
    • Avoid redirects
    • Remove duplicate scripts
    • Configure ETags
    • Make AJAX cacheable
  6. High Performance Web Sites YSlow
    • http://conferences.oreilly.com/velocity/ 20% discount: vel08st
  7. Even Faster Web Sites
    • Split the initial payload
    • Load scripts without blocking
    • Don't scatter scripts
    • Split dominant content domains
    • Make static content cookie-free
    • Reduce cookie weight
    • Minify CSS
    • Optimize images
    • Use iframes sparingly
    • To www or not to www
  8. Why focus on JavaScript? AOL eBay Facebook MySpace Wikipedia Yahoo! YouTube
  9. Scripts Block <script src=&quot;A.js&quot;> blocks parallel downloads and rendering What's &quot;Cuzillion&quot;? http://stevesouders.com/cuzillion/?ex=10008
  10. Cuzillion 'cuz there are a zillion pages to check a tool for quickly constructing web pages to see how components interact Open Source http://stevesouders.com/cuzillion/
  11. Split the Initial Payload: Facebook 43 external scripts, 550K uncompressed 9% of functionality is used before onload
  12. Unexecuted Payload 73.6% avg functions not used before onload www.aol.com 70% www.ebay.com 56% www.facebook.com 91% www.google.com/search 55% search.live.com/results 76% www.msn.com 69% www.myspace.com 82% en.wikipedia.org/wiki 68% www.yahoo.com 87% www.youtube.com 82%
  13. Split the initial payload split your JavaScript between what's needed to render the page and everything else load &quot;everything else&quot; after the page is rendered separate manually (Firebug); tools needed to automate this (Doloto from Microsoft) load scripts without blocking – how?
  14. MSN.com: Parallel Scripts Scripts and other resources downloaded in parallel! How? var p=g.getElementsByTagName(&quot;HEAD&quot;)[0]; var c=g.createElement(&quot;script&quot;); c.type=&quot;text/javascript&quot;; c.onreadystatechange=n; c.onerror=c.onload=k; c.src=e; p.appendChild(c) MSN
  15. Advanced Script Loading XHR Eval XHR Injection Script in Iframe Script DOM Element Script Defer document.write Script Tag
  16. XHR Eval script must have same domain as main page must refactor script var xhrObj = getXHRObject(); xhrObj.onreadystatechange = function() { if ( xhrObj.readyState != 4 ) return; eval(xhrObj.responseText); }; xhrObj.open('GET', 'A.js', true); xhrObj.send(''); http://stevesouders.com/cuzillion/?ex=10009
  17. XHR Injection var xhrObj = getXHRObject(); xhrObj.onreadystatechange = function() { if ( xhrObj.readyState != 4 ) return; var se=document.createElement('script'); document.getElementsByTagName('head') [0].appendChild(se); se.text = xhrObj.responseText; }; xhrObj.open('GET', 'A.js', true); xhrObj.send(''); script must have same domain as main page http://stevesouders.com/cuzillion/?ex=10015
  18. Script in Iframe <iframe src='A.html' width=0 height=0 frameborder=0 id=frame1></iframe>
    • iframe must have same domain as main page
    • must refactor script:
      • // access iframe from main page
      • window.frames[0].createNewDiv();
      • // access main page from iframe
      • parent.document.createElement('div');
    http://stevesouders.com/cuzillion/?ex=10012
  19. Script DOM Element var se = document.createElement('script'); se.src = 'http://anydomain.com/A.js'; document.getElementsByTagName('head') [0].appendChild(se); script and main page domains can differ no need to refactor JavaScript http://stevesouders.com/cuzillion/?ex=10010
  20. Script Defer <script defer src='A.js'></script> only supported in IE script and main page domains can differ no need to refactor JavaScript http://stevesouders.com/cuzillion/?ex=10013
  21. document.write Script Tag document.write (&quot;<scri&quot; + &quot;ipt type='text/javascript' src='A.js'>&quot; + &quot;</scri&quot; + &quot;ipt>&quot;); parallelization only works in IE parallel downloads for scripts, nothing else all document.write s must be in same script block http://stevesouders.com/cuzillion/?ex=10014
  22. Browser Busy Indicators
  23. Browser Busy Indicators good to show busy indicators when the user needs feedback bad when downloading in the background
  24. Ensure/Avoid Ordered Execution
    • Ensure scripts execute in order:
      • necessary when scripts have dependencies
      • IE: http://stevesouders.com/cuzillion/?ex=10017
      • FF: http://stevesouders.com/cuzillion/?ex=10018
    • Avoid scripts executing in order:
      • faster – first script back is executed immediately
      • http://stevesouders.com/cuzillion/?ex=10019
  25. Summary of Traits * Only other document.write scripts are downloaded in parallel (in the same script block).
  26. and the winner is...
  27. Load Scripts without Blocking
    • don't let scripts block other downloads
    • you can still control execution order, busy indicators, and onload event
    • What about inline scripts?
  28. Inline Scripts Block Rendering
    • long executing inline scripts block rendering of the entire page
    • http://stevesouders.com/cuzillion/?ex=10020
    • workarounds:
      • initiate execution with setTimeout
      • move JavaScript to external script with advanced downloading techniques
  29. Inline Scripts after Stylesheets Block Downloading
    • Firefox blocks parallel downloads when downloading stylesheets
    • IE doesn't...
    • ...unless the stylesheet is followed by an inline script
    • http://stevesouders.com/cuzillion/?ex=10021
    • best to move inline scripts above stylesheets or below other resources
  30. Examples of Scattered Scripts eBay MSN MySpace Wikipedia
  31. Don't Scatter Scripts remember inline scripts carry a cost avoid long-executing inline scripts don't put inline scripts between stylesheets and other resources
  32. Takeaways
    • focus on the frontend
    • run YSlow: http://developer.yahoo.com/yslow
    • Velocity: register before May 5
    • this year's focus: JavaScript
      • Split the Initial Payload
      • Load Scripts without Blocking
      • Don't Scatter Scripts
    • speed matters
    • you CAN make your site even faster!
  33. Steve Souders [email_address] http://stevesouders.com/

+ Steve SoudersSteve Souders, 2 years ago

custom

10444 views, 45 favs, 23 embeds more stats

More info about this document

© All Rights Reserved

Go to text version

  • Total Views 10444
    • 10019 on SlideShare
    • 425 from embeds
  • Comments 4
  • Favorites 45
  • Downloads 450
Most viewed embeds
  • 242 views on http://radar.oreilly.com
  • 89 views on http://www.helge.at
  • 18 views on http://www.techpresentations.org
  • 14 views on http://www.spetrov.com
  • 9 views on http://www.informationweek.com

more

All embeds
  • 242 views on http://radar.oreilly.com
  • 89 views on http://www.helge.at
  • 18 views on http://www.techpresentations.org
  • 14 views on http://www.spetrov.com
  • 9 views on http://www.informationweek.com
  • 9 views on http://lars.secondbrain.com
  • 7 views on http://martin.leyrer.priv.at
  • 7 views on http://sveinivar.secondbrain.com
  • 6 views on http://maciek79.secondbrain.com
  • 5 views on http://www.leyrer.priv.at
  • 5 views on http://wildfire.gigya.com
  • 2 views on http://feeds.feedburner.com
  • 2 views on http://radar.oreilly.com.cn
  • 1 views on http://xeal.secondbrain.com
  • 1 views on http://spetrov.com
  • 1 views on http://www.hanrss.com
  • 1 views on http://ddallas.secondbrain.com
  • 1 views on http://xss.yandex.net
  • 1 views on http://hondaccord.secondbrain.com
  • 1 views on http://static.slideshare.net
  • 1 views on http://www.zhuaxia.com
  • 1 views on http://lindafalk.secondbrain.com
  • 1 views on http://slideshareembed.blogspot.com

less

Flagged as inappropriate Flag as inappropriate
Flag as inappropriate

Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

Cancel
File a copyright complaint
Having problems? Go to our helpdesk?

Categories