Don't make me wait! or Building High-Performance Web Applications

Stoyan Stefanov
Stoyan Stefanovengineer at Facebook
“Don’t make me wait”
or
Building High-Performance
Web Apps
Stoyan Stefanov, Yahoo!
Brownbag at eBay
August 11, 2009
About me
•  Yahoo! Search
•  Yahoo! Exceptional
   Performance
•  YSlow 2.0 architect
•  http://smush.it
•  Books, articles
•  http://phpied.com
Importance of performance
•  Is it dev? QA? Afterthought?
•  Developers love it
•  But is it good for business?
Importance of performance
•  Self-regulating system
•  Slow down = lose users
•  We all hate slow pages
Importance of performance
                     1sec =
                     -2.8%
                     revenue
Importance of performance
                  Gets worse
                  with time

                  After-effect
Importance of performance
•  Yahoo!: 400 ms slower = 5-9%
drop in full-page traffic
Importance of performance
                  Slower
                  pages get
                  less traffic
Importance of performance
                  From 4-6
                  seconds to
                  1.5 seconds
“The premature optimization…
•  … is the root of all evil”
Knuth
•  “Make it right before you
make it fast”
Crockford
Measure, measure, measure
•  measure
•  profile
•  monitor
On trade-offs
“…everything has its drawbacks,
as the man said when his
mother-in-law died, and they
came upon him for the funeral
expenses”

Jerome K. Jerome
Three man in a boat
The Life of Page 2.0
             HTML                page
   request             onload    settles     request
             sent




                                 marriage?       R.I.P.
conception birth    graduation




                     User perceived
                     “onload” happens
                     somewhere here
The waterfall
The Waterfall
1.  Less stuff
2.  Smaller stuff
3.  Out of the way
4.  Start early
The Waterfall
1.  Less stuff
2.  Smaller stuff
3.  Out of the way
4.  Start early
Less HTTP requests
•  Combine components
Less HTTP requests
•  Before:

<script src="jquery.js"></script> 
<script src="jquery.twitter.js"></script> 
<script src="jquery.cookie.js"></script> 
<script src="myapp.js"></script> 
Less HTTP requests
•  After:

<script  
    src="all.js"  
     type="text/javascript"> 
</script> 
Less HTTP requests
•  Saved 3 HTTP requests 
Less HTTP requests
•  repeat for CSS:

<link  
      href="all.css"  
      rel="stylesheet"  
      type="text/css” 

/>
Less HTTP requests
•  CSS sprites for background
images



background‐position: ‐22px ‐0px; 
width: 12px; 
height: 10px; 
Less HTTP requests
 CSS sprites
•  Before: 15 requests, 6.8 K
•  After: 1 request, 1.4 K 
Less HTTP requests
•  CSS sprites – a pain,
 but there are tools



http://csssprites.com 
http://spritegen.website‐performance.org/  
Less HTTP requests
•  Inline images with data:
scheme
Less HTTP requests
•  data: URI scheme

$ php ‐r "echo base64_encode(file_get_contents('my.png'));” 
iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAIAAAA7ljmRAAAAGElEQVQIW2P4
DwcMDAxAfBvMAhEQMYgcACEHG8ELxtbPAAAAAElFTkSuQmCC 
Less HTTP requests
•  data: URI scheme

background‐image: url("data:image/png;base64,iVBORw0KG..."); 
Less HTTP requests
•  data: URI scheme

<img src="data:image/png;base64,iVBOR..." /> 
Less HTTP requests
•  data: URI scheme
•  works in IE!...
Less HTTP requests
•  data: URI scheme
•  works in IE8!
Less HTTP requests
•  data: URI scheme
•  MHTML for IE < 8


http://www.phpied.com/mhtml-when-you-need-data-uris-in-ie7-and-under/
http://www.hedgerwow.com/360/dhtml/base64-image/demo.php
Less HTTP requests - drawback
•  atomic components
•  invalidated by small changes


•  need to schedule changes
Less stuff? Cache
•  Cache is less universal than
we think
•  You can help


http://yuiblog.com/blog/2007/01/04/performance-research-part-2/
“never expire” policy
•  Static components with far-
future Expires header
•  JS, CSS, img

ExpiresActive On 
ExpiresByType image/png "access plus 10 years" 
Inline vs. external
•  a.k.a. less http vs. more
cache
•  how about both?
Inline vs. external
•  First visit:


1. Inline
2. Lazy-load the external file
3. Write a cookie
Inline vs. external
•  Later visits:


1. Read cookie
2. Refer to the external file
Less stuff – duh!
•  No 404s
•  No duplicates
•  No near-duplicates
Duplicates
•  2903384828078080_1.jpg
•  2204648665418080_1.jpg
•  3801476378448080_1.jpg
•  3801476377438080_1.jpg
Near duplicates
•  30x30 vs. 49x49



•  Rounded corners, shadows
The Waterfall
1.  Less stuff ✔
2.  Smaller stuff
3.  Out of the way
4.  Start early
The Waterfall
1.  Less stuff
2.  Smaller stuff
3.  Out of the way
4.  Start early
Gzip
Gzip
•  What to gzip?

            HTML, XHTML, XML,
           W00TChaMaCallitML,
            CSS, JS, JSON, HTC,
         plain text… all but binary


• (btw, check those older SWFs too)
Gzip
•  How to gzip?

AddOutputFilterByType DEFLATE text/html text/… 
Header append Vary Accept‐Encoding 




http://www.sitepoint.com/article/web‐site‐optimization‐steps  
Minify
•  Before
/** 
 * The dom module provides helper methods for  
 *    manipulating Dom elements. 
 * @module dom 
 * 
 */ 

(function() { 
    var Y = YAHOO.util,     // internal shorthand 
        getStyle,           // for load time browser branching 
        setStyle,           // ditto 
        propertyCache = {}, // for faster hyphen converts 
        reClassNameCache = {},          // cache regexes for className 
        document = window.document;     // cache for faster lookups 

    YAHOO.env._id_counter = YAHOO.env._id_counter || 0; 
Minify
•  After
(function(){var 
B=YAHOO.util,K,I,J={},F={},M=window.document;YAHOO.env._id_counter=YAHOO.en
v._id_counter||0; 
Minify
•  YUI Compressor
•  Minifies JS and CSS
•  Tolerates * and _ hacks
•  More than minification
Minify
•  Minify inline code too
Gzip or minification?
•  62,885 bytes - original jQuery (back in
Aug 2007)
•  31,822 - minified with the YUI
Compressor
•  19,758 - original gzipped
•  10,818 - minified and gzipped                FTW


http://www.julienlecomte.net/blog/2007/08/13/
Minify
•  minify HTML?
•  dangerous
•  write minified HTML

echo '<div class="my">', 
       '<p>', 
          $db‐>get('name'), 
       '</p>', 
     '<div>'; 
Minify
•  Strip quotes? No closing tags?
•  Some sites do



    <body bgcolor=#ffffff text=#000000 link=#0000cc 
 vlink=#551a8b alink=#ff0000 onload="...." topmargin=3 
  marginheight=3><textarea id=csi style=display:none> 
Minify
•  Relative URLs
Relative URLs on my blog
>>> document.links.length
204
>>> … loop …
    indexOf(‘http://www.phpied.com’)
130
>>> ‘http://www.phpied.com’.length
21
>>> 21*130/1024
2.666015625
Relative URLs on my blog
•  Compare:
•  2.66K - absolute links
•  1.4K - sprite of 15 elements
Images
•  http://smush.it
Images                                     Loss-
1.    No GIFs, PNG8                         less
2.    Crush PNGs
3.    run JPEGs through jpegtran
4.    Gifsicle for animations

http://yuiblog.com/blog/2008/11/14/imageopt-3/
Images – progressive JPEG
•  for images ~10K+
Images
•  eBay homepage could save
   20% image sizes
•  Search –> 10%+
•  Item -> 30% (50K+)
Images – duh!
1.  Don’t scale in HTML
2.  Generated images should
  be crushed PNGs too
Images
•  It’s only human to forget
•  All you need is a process so
  you don’t have to
  remember
204
•    The world’s smallest component?
•    204 No Content

<?php 
header("HTTP/1.0 204 No Content"); 
// .... do your job, e.g. logging 
?> 

http://www.phpied.com/204-no-content/
The Waterfall
1.  Less stuff ✔
2.  Smaller stuff ✔
3.  Out of the way
4.  Start early
The Waterfall
1.  Less stuff
2.  Smaller stuff
3.  Out of the way
4.  Start early
Free-falling waterfalls
•  Less DNS lookups – fetch
   components from not more
   than 2-4 domains
•  Less redirects
•  Blocking JavaScript/CSS
Not free-falling
JavaScript rocks!
•  But also blocks

   html
          js
               png

               png
Non-blocking JavaScript
•    Include via DOM
     html
                  js

            png

            png


var js = document.createElement('script'); 
js.src = 'myscript.js'; 
var h = document.getElementsByTagName('head')[0]; 
h.appendChild(js); 
Non-blocking JavaScript
•  And what about my inline
   scripts?
•  Setup a collection (registry)
   of inline scripts
Step 1
•  Inline in the <head>:

var myapp = { 
  stuff: [], 
}; 
Step 2
•    Add to the registry

Instead of:
  <script>alert('boo!');</script> 
Do:
  <script> 
    myapp.stuff.push(function(){ 
      alert('boo!'); 
    }); 
  </script> 
Step 3
•  Execute all

var l = myapp.stuff.length;  
for(var i = 0, i < l; i++) { 
  myapp.stuff[i](); 
} 
Blocking CSS?



But they do block:
•  In FF2
•  When followed by
   an inline script
The Waterfall
1.  Less stuff ✔
2.  Smaller stuff ✔
3.  Out of the way ✔
4.  Start early
The Waterfall
1.  Less stuff
2.  Smaller stuff
3.  Out of the way
4.  Start early
Cookies

•  less cookies
•  no cookies
•  www vs. non-www


3000 bytes of cookies cost 78ms
flush() early
 html
                         png

                    js               
                               css



 html



   js
        png
                                     ✔
              css
flush()
<html> 
<head> 
  <script src="my.js"  
   type="text/javascript"></script> 
  <link href="my.css"  
   type="text/css" rel="stylesheet" /> 
</head> 
<?php flush() ?> 
<body> 
  .... 
Chunked encoding
HTTP/1.1 200 OK 
Content‐Type: text/plain 
Transfer‐Encoding: chunked 

25 
This is the data in the first chunk 

1C 
and this is the second one 

0 
Chunked encoding

•  Progressive rendering
   - Semantic app chunks
   vs.
   - Server-level chunks
Progressive rendering
                        Chunk
                        #1




                        Chunk
                        #2




                        Chunk
                        #3
Progressive rendering

•  Server-level flush:
   bing.com – every 1 or 2K
   google (ungzip) – every 4K
Progressive + source order
                             1


3
                             2
4
The Waterfall
1.  Less stuff ✔
2.  Smaller stuff ✔
3.  Out of the way ✔
4.  Start early ✔
✓
Waterfall
Life after onload
Life after onload
1.  Lazy-load
2.  Pre-load
3.  XHR
4.  JavaScript optimizations
5.  Rendering
Lazy-load

•  bells & whistles
•  badges & widgets
Preload

•  to help next page’s
waterfall
•  img, CSS, JS, DNS lookups
XHR (Ajax)

•  small – gzip, JSON
•  less – Expires 
•  GET over POST
GET vs. POST for XHR
var url = 'test.php'; 
var request =  new XMLHttpRequest(); 
request.open("POST", url, false); 
// … 
request.send('test=1'); 
GET vs. POST for XHR
JavaScript optimizations
•  Number of DOM elements
•  DOM access
•  Event delegation
Touching the DOM
function foo() { 
  for (var count = 0; count < 1000; count++) { 
    document.body.innerHTML += 1; 
  } 
} 
Touching the DOM
function foo() { 
  var inner = ''; 
  for (var count = 0; count < 1000; count++) { 
    inner += 1; 
  } 
  document.body.innerHTML += inner; 
                                        1000
} 
                                        times
                                        faster
Rendering
•    CSS on top
•    No separate print CSS
•    CSS refactoring
•    No AlphaImageLoader
•    Expensive elements
•    No CSS expressions
•    Image dimensions
CSS early on
•    No separate print CSS file

/* screen styles */ 
#nav {...} 
.banner {...} 
/* print styles */ 
@media print { 
    #nav {display: none} 
    .banner {display: none;} 
} 
CSS refactoring
•  CSS tends to grow
•  Find unused selectors –
   DustMeSelectors extension
•  Cleanup things like:
   #header #menu {...} 
   div#menu {...} 
   ul li {...} 
No AlphaImageLoader
#some‐element { 
      background: url(image.png); 
      _background: none; 
      _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader 
               (src='image.png', sizingMethod='crop'); 
} 




http://yuiblog.com/blog/2008/12/08/imageopt-5/
Expensive elements
•  Avoid or limit
<applet> 
<object> (IE)
<iframe> 
Life after onload
1.  Lazy-load ✔
2.  Pre-load ✔
3.  XHR ✔
4.  JavaScript optimizations ✔
5.  Rendering ✔
✓
Life after onload
YSlow 2.0
YSlow




•  Firebug extension
•  Why (is my page) slow?
http://developer.yahoo.com/yslow/
Yahoo! performance rules
1.  Make Fewer HTTP Requests              19.  Reduce the Number of DOM Elements
2.  Use a Content Delivery Network        20.  Split Components Across Domains
3.  Add an Expires or a Cache-Control     21.  Minimize the Number of iframes
Header                                    22.  No 404s
4.  Gzip Components                       23.  Reduce Cookie Size
5.  Put Stylesheets at the Top            24.  Use Cookie-free Domains for
6.  Put Scripts at the Bottom             Components
7.     Avoid CSS Expressions              25.  Minimize DOM Access
8.     Make JavaScript and CSS External   26.  Develop Smart Event Handlers
9.     Reduce DNS Lookups                 27.  Choose <link> over @import
10.    Minify JavaScript and CSS          28.  Avoid Filters
11.    Avoid Redirects                    29.  Optimize Images
12.    Remove Duplicate JS and CSS        30.  Optimize CSS Sprites
13.    Configure ETags                    31.  Don't Scale Images in HTML
14.    Make Ajax Cacheable                32.  Make favicon.ico Small and
15.  Flush the Buffer Early               Cacheable
16.  Use GET for AJAX Requests            33.  Keep Components under 25K
17.  Post-load Components                 34.  Pack Components into a Multipart
                                          Document
18.  Preload Components
YSlow 1.0. rules
1.  Make Fewer HTTP Requests              19.  Reduce the Number of DOM Elements
2.  Use a Content Delivery Network        20.  Split Components Across Domains
3.  Add an Expires or a Cache-Control     21.  Minimize the Number of iframes
Header                                    22.  No 404s
4.  Gzip Components                       23.  Reduce Cookie Size
5.  Put Stylesheets at the Top            24.  Use Cookie-free Domains for
6.  Put Scripts at the Bottom             Components
7.     Avoid CSS Expressions              25.  Minimize DOM Access
8.     Make JavaScript and CSS External   26.  Develop Smart Event Handlers
9.     Reduce DNS Lookups                 27.  Choose <link> over @import
10.    Minify JavaScript and CSS          28.  Avoid Filters
11.    Avoid Redirects                    29.  Optimize Images
12.    Remove Duplicate JS and CSS        30.  Optimize CSS Sprites
13.    Configure ETags                    31.  Don't Scale Images in HTML
14.    Make Ajax Cacheable                32.  Make favicon.ico Small and
15.  Flush the Buffer Early               Cacheable
16.  Use GET for AJAX Requests            33.  Keep Components under 25K
17.  Post-load Components                 34.  Pack Components into a Multipart
                                          Document
18.  Preload Components
YSlow 2.0. rules
1.  Make Fewer HTTP Requests              19.  Reduce the Number of DOM Elements
2.  Use a Content Delivery Network        20.  Split Components Across Domains
3.  Add an Expires or a Cache-Control     21.  Minimize the Number of iframes
Header                                    22.  No 404s
4.  Gzip Components                       23.  Reduce Cookie Size
5.  Put Stylesheets at the Top            24.  Use Cookie-free Domains for
6.  Put Scripts at the Bottom             Components
7.     Avoid CSS Expressions              25.  Minimize DOM Access
8.     Make JavaScript and CSS External   26.  Develop Smart Event Handlers
9.     Reduce DNS Lookups                 27.  Choose <link> over @import
10.    Minify JavaScript and CSS          28.  Avoid Filters
11.    Avoid Redirects                    29.  Optimize Images
12.    Remove Duplicate JS and CSS        30.  Optimize CSS Sprites
13.    Configure ETags                    31.  Don't Scale Images in HTML
14.    Make Ajax Cacheable                32.  Make favicon.ico Small and
15.  Flush the Buffer Early               Cacheable
16.  Use GET for AJAX Requests            33.  Keep Components under 25K
17.  Post-load Components                 34.  Pack Components into a Multipart
                                          Document
18.  Preload Components
YSlow 1.0. rule weights
1.  Make Fewer HTTP Requests                   8
2.  Use a Content Delivery Network             6
3.  Add an Expires or a Cache-Control Header   10
4.     Gzip Components                         8
5.     Put Stylesheets at the Top              4
6.     Put Scripts at the Bottom               4
7.     Avoid CSS Expressions                   3
8.     Make JavaScript and CSS External        4
9.     Reduce DNS Lookups                      3
10.    Minify JavaScript                       4
11.    Avoid Redirects                         4
12.  Remove Duplicate JS                       4
13.  Configure Etags                           2
YSlow 2.0. rule weights
1.     Make Fewer HTTP Requests                   8
2.     Use a Content Delivery Network             6
3.     Add an Expires or a Cache-Control Header   10
4.     Gzip Components                            8
5.     Put Stylesheets at the Top                 4
6.     Put Scripts at the Bottom                  4
7.     Avoid CSS Expressions                      3
8.     Make JavaScript and CSS External           4
9.     Reduce DNS Lookups                         3
10.    Minify JavaScript and CSS                  4
11.    Avoid Redirects                            4
12.    Remove Duplicate JS and CSS                4
13.    Configure Etags                            2
14.    Make Ajax Cacheable                        4
16.    Use GET for AJAX Requests                  3
19.    Reduce the Number of DOM Elements          3
22.    No 404s                                    4
23.    Reduce Cookie Size                         3
24.    Use Cookie-free Domains for Components     3
28.    Avoid Filters                              4
31.    Don't Scale Images in HTML                 3
32.    Make favicon.ico Small and Cacheable       2
YSlow score
foreach rule
  total += rule score * rule weight
end foreach
score = total / sum of rule weights
YSlow letter score
•  (A)   90 – 100
•  (B)   80 – 89
•  (C)   70 – 79
•  (D)   60 – 69
•  (E)   50 – 59
•  (F)   under 50
Custom rule
1.  Add an Expires Header
2.  Configure Etags
   Rule             Weight        Rule score   *
   Expires header   10            100 (A)      1000
   ETags            2             50 (E)       100
   Total            12                         1100




Score = 1100 / 12 = 91.66 (A)
Note: max weight is 10, min rule score is 0
Rule scores
•  Start from 100
•  Penalty for every offence
Rule penalties
1.  Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External                 # ok   -points
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS                  JS    3      -4/off
11.    Avoid Redirects
                                                  CSS   2      -4/off
12.    Remove Duplicate JS and CSS
13.    Configure Etags                            img   6      -3/off
14.    Make Ajax Cacheable
16.    Use GET for AJAX Requests
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests


2.  Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects                             -10 points
12.    Remove Duplicate JS and CSS
13.    Configure Etags
                                                      per
14.    Make Ajax Cacheable                         offending
16.    Use GET for AJAX Requests                  component
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network


3.  Add Expires Headers
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS                If expiration
11.    Avoid Redirects                           is less than
12.    Remove Duplicate JS and CSS
13.    Configure Etags
                                                    2 days
14.    Make Ajax Cacheable                      subtract -11
16.    Use GET for AJAX Requests                  points per
19.    Reduce the Number of DOM Elements
                                                component
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header


4.  Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS                   -11 points
11.    Avoid Redirects                                per
12.    Remove Duplicate JS and CSS
13.    Configure Etags
                                                   offending
14.    Make Ajax Cacheable                        component
16.    Use GET for AJAX Requests                  bigger than
19.    Reduce the Number of DOM Elements
                                                    500 bytes
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components


5.  Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects                             -10 points
12.    Remove Duplicate JS and CSS
13.    Configure Etags
                                                      per
14.    Make Ajax Cacheable                         offending
16.    Use GET for AJAX Requests                  component
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top


6.  Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects                              -5 points
12.    Remove Duplicate JS and CSS
13.    Configure Etags
                                                       per
14.    Make Ajax Cacheable                         offending
16.    Use GET for AJAX Requests                  component
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom


7.  Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects
12.    Remove Duplicate JS and CSS                 -2 points
13.    Configure Etags                                per
       Make Ajax Cacheable
14. 
16.    Use GET for AJAX Requests
                                                  expression
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions


8.  Make JS and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects
12.    Remove Duplicate JS and CSS
13.    Configure Etags
14.    Make Ajax Cacheable                         Score is
16.    Use GET for AJAX Requests                  always n/a
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External


9.  Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects
                                                  4 domains
12.    Remove Duplicate JS and CSS                     ok
13.    Configure Etags                             -5 points
       Make Ajax Cacheable
14. 
16.    Use GET for AJAX Requests
                                                  per domain
19.    Reduce the Number of DOM Elements           otherwise
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups


10.  Minify                                       -10 points
11.    Avoid Redirects
12.    Remove Duplicate JS and CSS                    per
13.    Configure Etags                            offender,
       Make Ajax Cacheable
14. 
16.    Use GET for AJAX Requests
                                                  including
19.    Reduce the Number of DOM Elements             inline
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS


11.  Avoid Redirects
12.    Remove Duplicate JS and CSS
13.    Configure Etags
                                                   -10 points
14.    Make Ajax Cacheable                        per redirect
16.    Use GET for AJAX Requests
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects


12.  No Duplicates                                -5 points
                                                     per
13.    Configure Etags
14.    Make Ajax Cacheable                        duplicate
16.    Use GET for AJAX Requests                  JS or CSS
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects
12.    Remove Duplicate JS and CSS
                                                   -11 points
13.  Configure ETags                                  per
14.    Make Ajax Cacheable                         offending
16.    Use GET for AJAX Requests                  component
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom                    -5 points
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
                                                    per XHR
9.     Reduce DNS Lookups                          without at
10.    Minify JavaScript and CSS                  least 1 hour
11.    Avoid Redirects
                                                   expiration
12.    Remove Duplicate JS and CSS
13.    Configure Etags


14.  Make Ajax Cacheable
16.    Use GET for AJAX Requests
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top                 -5 points
6.     Put Scripts at the Bottom                     per
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
                                                  non-GET
9.     Reduce DNS Lookups                            XHR
10.    Minify JavaScript and CSS
11.    Avoid Redirects
12.    Remove Duplicate JS and CSS
13.    Configure Etags
14.    Make Ajax Cacheable


16.  Use GET for AJAX Requests
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top                 -10 points
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
                                                   for every
8.     Make JavaScript and CSS External               250
9.     Reduce DNS Lookups                         elements
10.    Minify JavaScript and CSS
                                                    over 900
11.    Avoid Redirects
12.    Remove Duplicate JS and CSS
13.    Configure Etags
14.    Make Ajax Cacheable
16.    Use GET for AJAX Requests


19.  Reduce # of DOM Elements
22.    No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects
12.    Remove Duplicate JS and CSS
13.    Configure Etags                              -5 points
14.    Make Ajax Cacheable                             per
16.    Use GET for AJAX Requests
19.    Reduce the Number of DOM Elements
                                                   offending
                                                  component
22.  No 404s
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects                             -10 points
12.    Remove Duplicate JS and CSS
                                                      per
13.    Configure Etags
14.    Make Ajax Cacheable
                                                  component
16.    Use GET for AJAX Requests                  requested
19.    Reduce the Number of DOM Elements           with over
       No 404s
22. 
                                                  1000 bytes
23.  Reduce Cookie Size                            of cookies
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions                       -5 points
8.     Make JavaScript and CSS External               per
       Reduce DNS Lookups
9. 
10.    Minify JavaScript and CSS
                                                  component
11.    Avoid Redirects                            requested
12.    Remove Duplicate JS and CSS                  with a
13.    Configure Etags                              cookie
14.    Make Ajax Cacheable
16.    Use GET for AJAX Requests
19.    Reduce the Number of DOM Elements
22.    No 404s
23.    Reduce Cookie Size


24.  Cookie-free Domains
28.    Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects
12.    Remove Duplicate JS and CSS
                                                    -5 points
13.    Configure Etags
14.    Make Ajax Cacheable
                                                  per offense
16.    Use GET for AJAX Requests                        or
19.    Reduce the Number of DOM Elements           -2 if using
       No 404s
22. 
23.    Reduce Cookie Size
                                                  _filter hack
24.    Use Cookie-free Domains for Components


28.  Avoid Filters
31.    Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects
12.    Remove Duplicate JS and CSS
13.    Configure Etags                             -5 points
14.    Make Ajax Cacheable                        per scaled
16.    Use GET for AJAX Requests
19.    Reduce the Number of DOM Elements
                                                     down
22.    No 404s                                      image
23.    Reduce Cookie Size
24.    Use Cookie-free Domains for Components
28.    Avoid Filters


31.  Don't Scale Images in HTML
32.    Make favicon.ico Small and Cacheable
Rule penalties
1.     Make Fewer HTTP Requests
2.     Use a Content Delivery Network
3.     Add an Expires or a Cache-Control Header
4.     Gzip Components
5.     Put Stylesheets at the Top
6.     Put Scripts at the Bottom
7.     Avoid CSS Expressions
8.     Make JavaScript and CSS External
9.     Reduce DNS Lookups
10.    Minify JavaScript and CSS
11.    Avoid Redirects
12.    Remove Duplicate JS and CSS
                                                   -5 points if
13.    Configure Etags
14.    Make Ajax Cacheable
                                                  size is over
16.    Use GET for AJAX Requests                  2000 bytes
19.    Reduce the Number of DOM Elements          and -5 if no
       No 404s
22. 
23.    Reduce Cookie Size
                                                   expiration
24.    Use Cookie-free Domains for Components
28.    Avoid Filters
31.    Don't Scale Images in HTML


32.  Small                     cacheable favicon
✓
YSlow 2.0
Words of Wisdom
Performance matters
•  It affects the user happiness
•  It affects the bottom line
Front-end
•  That’s where most of the time
is spent
It’s a marathon
•  Not a sprint
•  Measure, monitor, link to
business metrics
•  Bugs are expensive as the
time passes, performance
bugs even more so
What’s a low-hanging fruit?
•  Takes one engineer
•  Takes 15 minutes


Steve Krug
For non-low-hanging fruits?
1.  Pick 2 or 3
2.  Fix, measure one by one
3.  Come back and iterate
Thank you!


Stoyan Stefanov
@stoyanstefanov
http://www.phpied.com
1 of 143

Recommended

GRU4Rec v2 - Recurrent Neural Networks with Top-k Gains for Session-based Rec... by
GRU4Rec v2 - Recurrent Neural Networks with Top-k Gains for Session-based Rec...GRU4Rec v2 - Recurrent Neural Networks with Top-k Gains for Session-based Rec...
GRU4Rec v2 - Recurrent Neural Networks with Top-k Gains for Session-based Rec...Balázs Hidasi
3.2K views30 slides
Recommender system introduction by
Recommender system   introductionRecommender system   introduction
Recommender system introductionLiang Xiang
12.2K views39 slides
Recommender Systems: Advances in Collaborative Filtering by
Recommender Systems: Advances in Collaborative FilteringRecommender Systems: Advances in Collaborative Filtering
Recommender Systems: Advances in Collaborative FilteringChangsung Moon
1.4K views38 slides
Stephanie deWet, Software Engineer, Pinterest at MLconf SF 2016 by
Stephanie deWet, Software Engineer, Pinterest at MLconf SF 2016Stephanie deWet, Software Engineer, Pinterest at MLconf SF 2016
Stephanie deWet, Software Engineer, Pinterest at MLconf SF 2016MLconf
1.5K views59 slides
AWS Personalize 중심으로 살펴본 추천 시스템 원리와 구축 by
AWS Personalize 중심으로 살펴본 추천 시스템 원리와 구축AWS Personalize 중심으로 살펴본 추천 시스템 원리와 구축
AWS Personalize 중심으로 살펴본 추천 시스템 원리와 구축Sungmin Kim
843 views169 slides
An introduction to Elasticsearch's advanced relevance ranking toolbox by
An introduction to Elasticsearch's advanced relevance ranking toolboxAn introduction to Elasticsearch's advanced relevance ranking toolbox
An introduction to Elasticsearch's advanced relevance ranking toolboxElasticsearch
356 views157 slides

More Related Content

What's hot

[MLOps KR 행사] MLOps 춘추 전국 시대 정리(210605) by
[MLOps KR 행사] MLOps 춘추 전국 시대 정리(210605)[MLOps KR 행사] MLOps 춘추 전국 시대 정리(210605)
[MLOps KR 행사] MLOps 춘추 전국 시대 정리(210605)Seongyun Byeon
7.3K views105 slides
Applied Machine Learning for Ranking Products in an Ecommerce Setting by
Applied Machine Learning for Ranking Products in an Ecommerce SettingApplied Machine Learning for Ranking Products in an Ecommerce Setting
Applied Machine Learning for Ranking Products in an Ecommerce SettingDatabricks
1.7K views46 slides
Applied Data Science for E-Commerce by
Applied Data Science for E-CommerceApplied Data Science for E-Commerce
Applied Data Science for E-CommerceArul Bharathi
719 views33 slides
Little Big Data #1. 바닥부터 시작하는 데이터 인프라 by
Little Big Data #1. 바닥부터 시작하는 데이터 인프라Little Big Data #1. 바닥부터 시작하는 데이터 인프라
Little Big Data #1. 바닥부터 시작하는 데이터 인프라Seongyun Byeon
16.9K views113 slides
Item Based Collaborative Filtering Recommendation Algorithms by
Item Based Collaborative Filtering Recommendation AlgorithmsItem Based Collaborative Filtering Recommendation Algorithms
Item Based Collaborative Filtering Recommendation Algorithmsnextlib
21.6K views48 slides
System design for recommendations and search by
System design for recommendations and searchSystem design for recommendations and search
System design for recommendations and searchEugene Yan Ziyou
421 views54 slides

What's hot(20)

[MLOps KR 행사] MLOps 춘추 전국 시대 정리(210605) by Seongyun Byeon
[MLOps KR 행사] MLOps 춘추 전국 시대 정리(210605)[MLOps KR 행사] MLOps 춘추 전국 시대 정리(210605)
[MLOps KR 행사] MLOps 춘추 전국 시대 정리(210605)
Seongyun Byeon7.3K views
Applied Machine Learning for Ranking Products in an Ecommerce Setting by Databricks
Applied Machine Learning for Ranking Products in an Ecommerce SettingApplied Machine Learning for Ranking Products in an Ecommerce Setting
Applied Machine Learning for Ranking Products in an Ecommerce Setting
Databricks1.7K views
Applied Data Science for E-Commerce by Arul Bharathi
Applied Data Science for E-CommerceApplied Data Science for E-Commerce
Applied Data Science for E-Commerce
Arul Bharathi719 views
Little Big Data #1. 바닥부터 시작하는 데이터 인프라 by Seongyun Byeon
Little Big Data #1. 바닥부터 시작하는 데이터 인프라Little Big Data #1. 바닥부터 시작하는 데이터 인프라
Little Big Data #1. 바닥부터 시작하는 데이터 인프라
Seongyun Byeon16.9K views
Item Based Collaborative Filtering Recommendation Algorithms by nextlib
Item Based Collaborative Filtering Recommendation AlgorithmsItem Based Collaborative Filtering Recommendation Algorithms
Item Based Collaborative Filtering Recommendation Algorithms
nextlib21.6K views
System design for recommendations and search by Eugene Yan Ziyou
System design for recommendations and searchSystem design for recommendations and search
System design for recommendations and search
Eugene Yan Ziyou421 views
BigQuery의 모든 것(기획자, 마케터, 신입 데이터 분석가를 위한) 입문편 by Seongyun Byeon
BigQuery의 모든 것(기획자, 마케터, 신입 데이터 분석가를 위한) 입문편BigQuery의 모든 것(기획자, 마케터, 신입 데이터 분석가를 위한) 입문편
BigQuery의 모든 것(기획자, 마케터, 신입 데이터 분석가를 위한) 입문편
Seongyun Byeon38.2K views
구름 이야기(Feat. gcp) - 구글클라우드(GCP) 활용 사례 by Seongyun Byeon
구름 이야기(Feat. gcp) - 구글클라우드(GCP) 활용 사례구름 이야기(Feat. gcp) - 구글클라우드(GCP) 활용 사례
구름 이야기(Feat. gcp) - 구글클라우드(GCP) 활용 사례
Seongyun Byeon2.4K views
Robust MLOps with Open-Source: ModelDB, Docker, Jenkins, and Prometheus by Manasi Vartak
Robust MLOps with Open-Source: ModelDB, Docker, Jenkins, and PrometheusRobust MLOps with Open-Source: ModelDB, Docker, Jenkins, and Prometheus
Robust MLOps with Open-Source: ModelDB, Docker, Jenkins, and Prometheus
Manasi Vartak604 views
오픈소스 프레임워크 기반 웹 서비스 설계 (Example) by 중선 곽
오픈소스 프레임워크 기반 웹 서비스 설계 (Example)오픈소스 프레임워크 기반 웹 서비스 설계 (Example)
오픈소스 프레임워크 기반 웹 서비스 설계 (Example)
중선 곽5.5K views
Smart Data Slides: Machine Learning - Case Studies by DATAVERSITY
Smart Data Slides: Machine Learning - Case StudiesSmart Data Slides: Machine Learning - Case Studies
Smart Data Slides: Machine Learning - Case Studies
DATAVERSITY4.1K views
Collaborative filtering by Neha Kulkarni
Collaborative filteringCollaborative filtering
Collaborative filtering
Neha Kulkarni4.3K views
Kdd 2014 Tutorial - the recommender problem revisited by Xavier Amatriain
Kdd 2014 Tutorial -  the recommender problem revisitedKdd 2014 Tutorial -  the recommender problem revisited
Kdd 2014 Tutorial - the recommender problem revisited
Xavier Amatriain46.9K views
MOBILITY X DATA : 모빌리티 산업의 도전 과제 by Seongyun Byeon
MOBILITY X DATA : 모빌리티 산업의 도전 과제MOBILITY X DATA : 모빌리티 산업의 도전 과제
MOBILITY X DATA : 모빌리티 산업의 도전 과제
Seongyun Byeon2.9K views
Tutorial on sequence aware recommender systems - UMAP 2018 by Paolo Cremonesi
Tutorial on sequence aware recommender systems - UMAP 2018Tutorial on sequence aware recommender systems - UMAP 2018
Tutorial on sequence aware recommender systems - UMAP 2018
Paolo Cremonesi2.3K views
LinkedIn talk at Netflix ML Platform meetup Sep 2019 by Faisal Siddiqi
LinkedIn talk at Netflix ML Platform meetup Sep 2019LinkedIn talk at Netflix ML Platform meetup Sep 2019
LinkedIn talk at Netflix ML Platform meetup Sep 2019
Faisal Siddiqi3.2K views
Recommender Engines by Thomas Hess
Recommender EnginesRecommender Engines
Recommender Engines
Thomas Hess3.2K views
An introduction to Recommender Systems by David Zibriczky
An introduction to Recommender SystemsAn introduction to Recommender Systems
An introduction to Recommender Systems
David Zibriczky2.3K views
How to build a recommender system? by blueace
How to build a recommender system?How to build a recommender system?
How to build a recommender system?
blueace25.6K views

Viewers also liked

Data Encoding by
Data EncodingData Encoding
Data EncodingLuka M G
48.5K views47 slides
All about INCOTERMS latest revision by
All about INCOTERMS latest revision All about INCOTERMS latest revision
All about INCOTERMS latest revision Mihai Guta
32K views33 slides
Physical assessment by
Physical assessmentPhysical assessment
Physical assessmentNelson Munthali
119.6K views33 slides
Big Hairy Audacious Goals by
Big Hairy Audacious GoalsBig Hairy Audacious Goals
Big Hairy Audacious Goalsremoved_4d1206b5c6020534b4513b7e279cfccf
39.4K views34 slides
Pccn Review Part 1 by
Pccn Review Part 1Pccn Review Part 1
Pccn Review Part 1Sherry Knowles
10.5K views132 slides
New product marketing (perfume) by
New product marketing (perfume)New product marketing (perfume)
New product marketing (perfume)Shajar Ali
171.4K views23 slides

Viewers also liked(20)

Data Encoding by Luka M G
Data EncodingData Encoding
Data Encoding
Luka M G48.5K views
All about INCOTERMS latest revision by Mihai Guta
All about INCOTERMS latest revision All about INCOTERMS latest revision
All about INCOTERMS latest revision
Mihai Guta32K views
New product marketing (perfume) by Shajar Ali
New product marketing (perfume)New product marketing (perfume)
New product marketing (perfume)
Shajar Ali171.4K views
Organisational Sustainability by David Alman
Organisational SustainabilityOrganisational Sustainability
Organisational Sustainability
David Alman38.4K views
Cell block and liquid based cytology by Dr Neha Mahajan
Cell block and liquid based cytologyCell block and liquid based cytology
Cell block and liquid based cytology
Dr Neha Mahajan32.3K views
The Literature Review Process by annielibrarian
The Literature Review ProcessThe Literature Review Process
The Literature Review Process
annielibrarian100.1K views
GMAT Math Flashcards by GMAT Prep Now
GMAT Math FlashcardsGMAT Math Flashcards
GMAT Math Flashcards
GMAT Prep Now27.7K views
Basics of c++ Programming Language by Ahmad Idrees
Basics of c++ Programming LanguageBasics of c++ Programming Language
Basics of c++ Programming Language
Ahmad Idrees47.8K views
Product Marketing Framework for Product or Service Launch by Janet Jaiswal
Product Marketing Framework for Product or Service LaunchProduct Marketing Framework for Product or Service Launch
Product Marketing Framework for Product or Service Launch
Janet Jaiswal39.9K views
The Art of AngularJS in 2015 by Matt Raible
The Art of AngularJS in 2015The Art of AngularJS in 2015
The Art of AngularJS in 2015
Matt Raible43.8K views
congenital anomalies of renal system by Ria Saira
congenital anomalies of renal systemcongenital anomalies of renal system
congenital anomalies of renal system
Ria Saira73.8K views
State of Drupal keynote, DrupalCon Austin by Dries Buytaert
State of Drupal keynote, DrupalCon AustinState of Drupal keynote, DrupalCon Austin
State of Drupal keynote, DrupalCon Austin
Dries Buytaert88.4K views
Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013 by K.Mohamed Faizal
Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013
Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013
K.Mohamed Faizal42.5K views
Personal SWOT for Teachers by m nagaRAJU
Personal SWOT for TeachersPersonal SWOT for Teachers
Personal SWOT for Teachers
m nagaRAJU181.3K views
Thai tech startup ecosystem report 2017 by Techsauce Media
Thai tech startup ecosystem report 2017Thai tech startup ecosystem report 2017
Thai tech startup ecosystem report 2017
Techsauce Media67.1K views
BUSINESS QUIZ -Round 1 by pradeep acharya
 BUSINESS QUIZ -Round 1 BUSINESS QUIZ -Round 1
BUSINESS QUIZ -Round 1
pradeep acharya137.1K views

Similar to Don't make me wait! or Building High-Performance Web Applications

Voices that matter: High Performance Web Sites by
Voices that matter: High Performance Web SitesVoices that matter: High Performance Web Sites
Voices that matter: High Performance Web SitesStoyan Stefanov
1.6K views77 slides
Progressive Downloads and Rendering by
Progressive Downloads and RenderingProgressive Downloads and Rendering
Progressive Downloads and RenderingStoyan Stefanov
6K views91 slides
Progressive downloads and rendering (Stoyan Stefanov) by
Progressive downloads and rendering (Stoyan Stefanov)Progressive downloads and rendering (Stoyan Stefanov)
Progressive downloads and rendering (Stoyan Stefanov)Ontico
1.4K views126 slides
Cvcc performance tuning by
Cvcc performance tuningCvcc performance tuning
Cvcc performance tuningJohn McCaffrey
951 views65 slides
Rails Performance Tricks and Treats by
Rails Performance Tricks and TreatsRails Performance Tricks and Treats
Rails Performance Tricks and TreatsMarshall Yount
1K views43 slides
HTML5, just another presentation :) by
HTML5, just another presentation :)HTML5, just another presentation :)
HTML5, just another presentation :)François Massart
1.1K views63 slides

Similar to Don't make me wait! or Building High-Performance Web Applications(20)

Voices that matter: High Performance Web Sites by Stoyan Stefanov
Voices that matter: High Performance Web SitesVoices that matter: High Performance Web Sites
Voices that matter: High Performance Web Sites
Stoyan Stefanov1.6K views
Progressive Downloads and Rendering by Stoyan Stefanov
Progressive Downloads and RenderingProgressive Downloads and Rendering
Progressive Downloads and Rendering
Stoyan Stefanov6K views
Progressive downloads and rendering (Stoyan Stefanov) by Ontico
Progressive downloads and rendering (Stoyan Stefanov)Progressive downloads and rendering (Stoyan Stefanov)
Progressive downloads and rendering (Stoyan Stefanov)
Ontico1.4K views
Rails Performance Tricks and Treats by Marshall Yount
Rails Performance Tricks and TreatsRails Performance Tricks and Treats
Rails Performance Tricks and Treats
Marshall Yount1K views
Building Lightning Fast Websites (for Twin Cities .NET User Group) by strommen
Building Lightning Fast Websites (for Twin Cities .NET User Group)Building Lightning Fast Websites (for Twin Cities .NET User Group)
Building Lightning Fast Websites (for Twin Cities .NET User Group)
strommen451 views
Progressive Downloads and Rendering - take #2 by Stoyan Stefanov
Progressive Downloads and Rendering - take #2Progressive Downloads and Rendering - take #2
Progressive Downloads and Rendering - take #2
Stoyan Stefanov3.3K views
My Site is slow - Drupal Camp London 2013 by hernanibf
My Site is slow - Drupal Camp London 2013My Site is slow - Drupal Camp London 2013
My Site is slow - Drupal Camp London 2013
hernanibf4.3K views
JavaScript Performance Patterns by Stoyan Stefanov
JavaScript Performance PatternsJavaScript Performance Patterns
JavaScript Performance Patterns
Stoyan Stefanov4.9K views
My site is slow by hernanibf
My site is slowMy site is slow
My site is slow
hernanibf2.2K views
EscConf - Deep Dive Frontend Optimization by Jonathan Klein
EscConf - Deep Dive Frontend OptimizationEscConf - Deep Dive Frontend Optimization
EscConf - Deep Dive Frontend Optimization
Jonathan Klein1.3K views
Windycityrails page performance by John McCaffrey
Windycityrails page performanceWindycityrails page performance
Windycityrails page performance
John McCaffrey2.9K views
10 Things You Can Do to Speed Up Your Web App Today by Chris Love
10 Things You Can Do to Speed Up Your Web App Today10 Things You Can Do to Speed Up Your Web App Today
10 Things You Can Do to Speed Up Your Web App Today
Chris Love1.7K views
Page Performance by atorreno
Page PerformancePage Performance
Page Performance
atorreno1K views

More from Stoyan Stefanov

Reactive JavaScript by
Reactive JavaScriptReactive JavaScript
Reactive JavaScriptStoyan Stefanov
5.1K views41 slides
YSlow hacking by
YSlow hackingYSlow hacking
YSlow hackingStoyan Stefanov
3.1K views27 slides
Liking performance by
Liking performanceLiking performance
Liking performanceStoyan Stefanov
2.1K views20 slides
JavaScript performance patterns by
JavaScript performance patternsJavaScript performance patterns
JavaScript performance patternsStoyan Stefanov
8K views69 slides
High Performance Social Plugins by
High Performance Social PluginsHigh Performance Social Plugins
High Performance Social PluginsStoyan Stefanov
3.3K views40 slides
Social Button BFFs by
Social Button BFFsSocial Button BFFs
Social Button BFFsStoyan Stefanov
2.1K views33 slides

More from Stoyan Stefanov(20)

High Performance Social Plugins by Stoyan Stefanov
High Performance Social PluginsHigh Performance Social Plugins
High Performance Social Plugins
Stoyan Stefanov3.3K views
JavaScript навсякъде by Stoyan Stefanov
JavaScript навсякъдеJavaScript навсякъде
JavaScript навсякъде
Stoyan Stefanov2.2K views
JavaScript for PHP developers by Stoyan Stefanov
JavaScript for PHP developersJavaScript for PHP developers
JavaScript for PHP developers
Stoyan Stefanov15.6K views
CSS and image optimization by Stoyan Stefanov
CSS and image optimizationCSS and image optimization
CSS and image optimization
Stoyan Stefanov26.8K views
High-performance DOM scripting by Stoyan Stefanov
High-performance DOM scriptingHigh-performance DOM scripting
High-performance DOM scripting
Stoyan Stefanov2.7K views
Ignite Velocity: Image Weight Loss Clinic by Stoyan Stefanov
Ignite Velocity: Image Weight Loss ClinicIgnite Velocity: Image Weight Loss Clinic
Ignite Velocity: Image Weight Loss Clinic
Stoyan Stefanov1.9K views
High Performance Kick Ass Web Apps (JavaScript edition) by Stoyan Stefanov
High Performance Kick Ass Web Apps (JavaScript edition)High Performance Kick Ass Web Apps (JavaScript edition)
High Performance Kick Ass Web Apps (JavaScript edition)
Stoyan Stefanov41.9K views

Recently uploaded

ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ... by
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...Jasper Oosterveld
19 views49 slides
virtual reality.pptx by
virtual reality.pptxvirtual reality.pptx
virtual reality.pptxG036GaikwadSnehal
14 views15 slides
MVP and prioritization.pdf by
MVP and prioritization.pdfMVP and prioritization.pdf
MVP and prioritization.pdfrahuldharwal141
31 views8 slides
Five Things You SHOULD Know About Postman by
Five Things You SHOULD Know About PostmanFive Things You SHOULD Know About Postman
Five Things You SHOULD Know About PostmanPostman
36 views43 slides
PRODUCT LISTING.pptx by
PRODUCT LISTING.pptxPRODUCT LISTING.pptx
PRODUCT LISTING.pptxangelicacueva6
14 views1 slide
STPI OctaNE CoE Brochure.pdf by
STPI OctaNE CoE Brochure.pdfSTPI OctaNE CoE Brochure.pdf
STPI OctaNE CoE Brochure.pdfmadhurjyapb
14 views1 slide

Recently uploaded(20)

ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ... by Jasper Oosterveld
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
Five Things You SHOULD Know About Postman by Postman
Five Things You SHOULD Know About PostmanFive Things You SHOULD Know About Postman
Five Things You SHOULD Know About Postman
Postman36 views
STPI OctaNE CoE Brochure.pdf by madhurjyapb
STPI OctaNE CoE Brochure.pdfSTPI OctaNE CoE Brochure.pdf
STPI OctaNE CoE Brochure.pdf
madhurjyapb14 views
Voice Logger - Telephony Integration Solution at Aegis by Nirmal Sharma
Voice Logger - Telephony Integration Solution at AegisVoice Logger - Telephony Integration Solution at Aegis
Voice Logger - Telephony Integration Solution at Aegis
Nirmal Sharma39 views
"Running students' code in isolation. The hard way", Yurii Holiuk by Fwdays
"Running students' code in isolation. The hard way", Yurii Holiuk "Running students' code in isolation. The hard way", Yurii Holiuk
"Running students' code in isolation. The hard way", Yurii Holiuk
Fwdays17 views
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf by Dr. Jimmy Schwarzkopf
STKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdfSTKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdf
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive by Network Automation Forum
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLiveAutomating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院 by IttrainingIttraining
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院
【USB韌體設計課程】精選講義節錄-USB的列舉過程_艾鍗學院
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... by James Anderson
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
James Anderson92 views
SAP Automation Using Bar Code and FIORI.pdf by Virendra Rai, PMP
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdf
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas... by Bernd Ruecker
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
Bernd Ruecker40 views

Don't make me wait! or Building High-Performance Web Applications

  • 1. “Don’t make me wait” or Building High-Performance Web Apps Stoyan Stefanov, Yahoo! Brownbag at eBay August 11, 2009
  • 2. About me •  Yahoo! Search •  Yahoo! Exceptional Performance •  YSlow 2.0 architect •  http://smush.it •  Books, articles •  http://phpied.com
  • 3. Importance of performance •  Is it dev? QA? Afterthought? •  Developers love it •  But is it good for business?
  • 4. Importance of performance •  Self-regulating system •  Slow down = lose users •  We all hate slow pages
  • 5. Importance of performance 1sec = -2.8% revenue
  • 6. Importance of performance Gets worse with time After-effect
  • 7. Importance of performance •  Yahoo!: 400 ms slower = 5-9% drop in full-page traffic
  • 8. Importance of performance Slower pages get less traffic
  • 9. Importance of performance From 4-6 seconds to 1.5 seconds
  • 10. “The premature optimization… •  … is the root of all evil” Knuth •  “Make it right before you make it fast” Crockford
  • 11. Measure, measure, measure •  measure •  profile •  monitor
  • 12. On trade-offs “…everything has its drawbacks, as the man said when his mother-in-law died, and they came upon him for the funeral expenses” Jerome K. Jerome Three man in a boat
  • 13. The Life of Page 2.0 HTML page request onload settles request sent marriage? R.I.P. conception birth graduation User perceived “onload” happens somewhere here
  • 15. The Waterfall 1.  Less stuff 2.  Smaller stuff 3.  Out of the way 4.  Start early
  • 16. The Waterfall 1.  Less stuff 2.  Smaller stuff 3.  Out of the way 4.  Start early
  • 17. Less HTTP requests •  Combine components
  • 18. Less HTTP requests •  Before: <script src="jquery.js"></script>  <script src="jquery.twitter.js"></script>  <script src="jquery.cookie.js"></script>  <script src="myapp.js"></script> 
  • 19. Less HTTP requests •  After: <script    src="all.js"    type="text/javascript">  </script> 
  • 20. Less HTTP requests •  Saved 3 HTTP requests 
  • 21. Less HTTP requests •  repeat for CSS: <link    href="all.css"    rel="stylesheet"    type="text/css”  />
  • 22. Less HTTP requests •  CSS sprites for background images background‐position: ‐22px ‐0px;  width: 12px;  height: 10px; 
  • 23. Less HTTP requests CSS sprites •  Before: 15 requests, 6.8 K •  After: 1 request, 1.4 K 
  • 24. Less HTTP requests •  CSS sprites – a pain, but there are tools http://csssprites.com  http://spritegen.website‐performance.org/  
  • 25. Less HTTP requests •  Inline images with data: scheme
  • 26. Less HTTP requests •  data: URI scheme $ php ‐r "echo base64_encode(file_get_contents('my.png'));”  iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAIAAAA7ljmRAAAAGElEQVQIW2P4 DwcMDAxAfBvMAhEQMYgcACEHG8ELxtbPAAAAAElFTkSuQmCC 
  • 27. Less HTTP requests •  data: URI scheme background‐image: url("data:image/png;base64,iVBORw0KG..."); 
  • 28. Less HTTP requests •  data: URI scheme <img src="data:image/png;base64,iVBOR..." /> 
  • 29. Less HTTP requests •  data: URI scheme •  works in IE!...
  • 30. Less HTTP requests •  data: URI scheme •  works in IE8!
  • 31. Less HTTP requests •  data: URI scheme •  MHTML for IE < 8 http://www.phpied.com/mhtml-when-you-need-data-uris-in-ie7-and-under/ http://www.hedgerwow.com/360/dhtml/base64-image/demo.php
  • 32. Less HTTP requests - drawback •  atomic components •  invalidated by small changes •  need to schedule changes
  • 33. Less stuff? Cache •  Cache is less universal than we think •  You can help http://yuiblog.com/blog/2007/01/04/performance-research-part-2/
  • 34. “never expire” policy •  Static components with far- future Expires header •  JS, CSS, img ExpiresActive On  ExpiresByType image/png "access plus 10 years" 
  • 35. Inline vs. external •  a.k.a. less http vs. more cache •  how about both?
  • 36. Inline vs. external •  First visit: 1. Inline 2. Lazy-load the external file 3. Write a cookie
  • 37. Inline vs. external •  Later visits: 1. Read cookie 2. Refer to the external file
  • 38. Less stuff – duh! •  No 404s •  No duplicates •  No near-duplicates
  • 39. Duplicates •  2903384828078080_1.jpg •  2204648665418080_1.jpg •  3801476378448080_1.jpg •  3801476377438080_1.jpg
  • 40. Near duplicates •  30x30 vs. 49x49 •  Rounded corners, shadows
  • 41. The Waterfall 1.  Less stuff ✔ 2.  Smaller stuff 3.  Out of the way 4.  Start early
  • 42. The Waterfall 1.  Less stuff 2.  Smaller stuff 3.  Out of the way 4.  Start early
  • 43. Gzip
  • 44. Gzip •  What to gzip? HTML, XHTML, XML, W00TChaMaCallitML, CSS, JS, JSON, HTC, plain text… all but binary • (btw, check those older SWFs too)
  • 45. Gzip •  How to gzip? AddOutputFilterByType DEFLATE text/html text/…  Header append Vary Accept‐Encoding  http://www.sitepoint.com/article/web‐site‐optimization‐steps  
  • 48. Minify •  YUI Compressor •  Minifies JS and CSS •  Tolerates * and _ hacks •  More than minification
  • 50. Gzip or minification? •  62,885 bytes - original jQuery (back in Aug 2007) •  31,822 - minified with the YUI Compressor •  19,758 - original gzipped •  10,818 - minified and gzipped FTW http://www.julienlecomte.net/blog/2007/08/13/
  • 51. Minify •  minify HTML? •  dangerous •  write minified HTML echo '<div class="my">',         '<p>',            $db‐>get('name'),         '</p>',       '<div>'; 
  • 52. Minify •  Strip quotes? No closing tags? •  Some sites do <body bgcolor=#ffffff text=#000000 link=#0000cc  vlink=#551a8b alink=#ff0000 onload="...." topmargin=3  marginheight=3><textarea id=csi style=display:none> 
  • 54. Relative URLs on my blog >>> document.links.length 204 >>> … loop … indexOf(‘http://www.phpied.com’) 130 >>> ‘http://www.phpied.com’.length 21 >>> 21*130/1024 2.666015625
  • 55. Relative URLs on my blog •  Compare: •  2.66K - absolute links •  1.4K - sprite of 15 elements
  • 57. Images Loss- 1.  No GIFs, PNG8 less 2.  Crush PNGs 3.  run JPEGs through jpegtran 4.  Gifsicle for animations http://yuiblog.com/blog/2008/11/14/imageopt-3/
  • 58. Images – progressive JPEG •  for images ~10K+
  • 59. Images •  eBay homepage could save 20% image sizes •  Search –> 10%+ •  Item -> 30% (50K+)
  • 60. Images – duh! 1.  Don’t scale in HTML 2.  Generated images should be crushed PNGs too
  • 61. Images •  It’s only human to forget •  All you need is a process so you don’t have to remember
  • 62. 204 •  The world’s smallest component? •  204 No Content <?php  header("HTTP/1.0 204 No Content");  // .... do your job, e.g. logging  ?>  http://www.phpied.com/204-no-content/
  • 63. The Waterfall 1.  Less stuff ✔ 2.  Smaller stuff ✔ 3.  Out of the way 4.  Start early
  • 64. The Waterfall 1.  Less stuff 2.  Smaller stuff 3.  Out of the way 4.  Start early
  • 65. Free-falling waterfalls •  Less DNS lookups – fetch components from not more than 2-4 domains •  Less redirects •  Blocking JavaScript/CSS
  • 67. JavaScript rocks! •  But also blocks html js png png
  • 68. Non-blocking JavaScript •  Include via DOM html js png png var js = document.createElement('script');  js.src = 'myscript.js';  var h = document.getElementsByTagName('head')[0];  h.appendChild(js); 
  • 69. Non-blocking JavaScript •  And what about my inline scripts? •  Setup a collection (registry) of inline scripts
  • 70. Step 1 •  Inline in the <head>: var myapp = {    stuff: [],  }; 
  • 71. Step 2 •  Add to the registry Instead of:   <script>alert('boo!');</script>  Do:   <script>      myapp.stuff.push(function(){     alert('boo!');      });    </script> 
  • 72. Step 3 •  Execute all var l = myapp.stuff.length;   for(var i = 0, i < l; i++) {    myapp.stuff[i]();  } 
  • 73. Blocking CSS? But they do block: •  In FF2 •  When followed by an inline script
  • 74. The Waterfall 1.  Less stuff ✔ 2.  Smaller stuff ✔ 3.  Out of the way ✔ 4.  Start early
  • 75. The Waterfall 1.  Less stuff 2.  Smaller stuff 3.  Out of the way 4.  Start early
  • 76. Cookies •  less cookies •  no cookies •  www vs. non-www 3000 bytes of cookies cost 78ms
  • 77. flush() early html png js  css html js png ✔ css
  • 78. flush() <html>  <head>    <script src="my.js"    type="text/javascript"></script>    <link href="my.css"    type="text/css" rel="stylesheet" />  </head>  <?php flush() ?>  <body>    .... 
  • 80. Chunked encoding •  Progressive rendering - Semantic app chunks vs. - Server-level chunks
  • 81. Progressive rendering Chunk #1 Chunk #2 Chunk #3
  • 82. Progressive rendering •  Server-level flush: bing.com – every 1 or 2K google (ungzip) – every 4K
  • 83. Progressive + source order 1 3 2 4
  • 84. The Waterfall 1.  Less stuff ✔ 2.  Smaller stuff ✔ 3.  Out of the way ✔ 4.  Start early ✔
  • 87. Life after onload 1.  Lazy-load 2.  Pre-load 3.  XHR 4.  JavaScript optimizations 5.  Rendering
  • 88. Lazy-load •  bells & whistles •  badges & widgets
  • 89. Preload •  to help next page’s waterfall •  img, CSS, JS, DNS lookups
  • 90. XHR (Ajax) •  small – gzip, JSON •  less – Expires  •  GET over POST
  • 91. GET vs. POST for XHR var url = 'test.php';  var request =  new XMLHttpRequest();  request.open("POST", url, false);  // …  request.send('test=1'); 
  • 92. GET vs. POST for XHR
  • 93. JavaScript optimizations •  Number of DOM elements •  DOM access •  Event delegation
  • 96. Rendering •  CSS on top •  No separate print CSS •  CSS refactoring •  No AlphaImageLoader •  Expensive elements •  No CSS expressions •  Image dimensions
  • 97. CSS early on •  No separate print CSS file /* screen styles */  #nav {...}  .banner {...}  /* print styles */  @media print {      #nav {display: none}      .banner {display: none;}  } 
  • 98. CSS refactoring •  CSS tends to grow •  Find unused selectors – DustMeSelectors extension •  Cleanup things like:   #header #menu {...}    div#menu {...}    ul li {...} 
  • 99. No AlphaImageLoader #some‐element {   background: url(image.png);   _background: none;   _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader      (src='image.png', sizingMethod='crop');  }  http://yuiblog.com/blog/2008/12/08/imageopt-5/
  • 100. Expensive elements •  Avoid or limit <applet>  <object> (IE) <iframe> 
  • 101. Life after onload 1.  Lazy-load ✔ 2.  Pre-load ✔ 3.  XHR ✔ 4.  JavaScript optimizations ✔ 5.  Rendering ✔
  • 104. YSlow •  Firebug extension •  Why (is my page) slow? http://developer.yahoo.com/yslow/
  • 105. Yahoo! performance rules 1.  Make Fewer HTTP Requests 19.  Reduce the Number of DOM Elements 2.  Use a Content Delivery Network 20.  Split Components Across Domains 3.  Add an Expires or a Cache-Control 21.  Minimize the Number of iframes Header 22.  No 404s 4.  Gzip Components 23.  Reduce Cookie Size 5.  Put Stylesheets at the Top 24.  Use Cookie-free Domains for 6.  Put Scripts at the Bottom Components 7.  Avoid CSS Expressions 25.  Minimize DOM Access 8.  Make JavaScript and CSS External 26.  Develop Smart Event Handlers 9.  Reduce DNS Lookups 27.  Choose <link> over @import 10.  Minify JavaScript and CSS 28.  Avoid Filters 11.  Avoid Redirects 29.  Optimize Images 12.  Remove Duplicate JS and CSS 30.  Optimize CSS Sprites 13.  Configure ETags 31.  Don't Scale Images in HTML 14.  Make Ajax Cacheable 32.  Make favicon.ico Small and 15.  Flush the Buffer Early Cacheable 16.  Use GET for AJAX Requests 33.  Keep Components under 25K 17.  Post-load Components 34.  Pack Components into a Multipart Document 18.  Preload Components
  • 106. YSlow 1.0. rules 1.  Make Fewer HTTP Requests 19.  Reduce the Number of DOM Elements 2.  Use a Content Delivery Network 20.  Split Components Across Domains 3.  Add an Expires or a Cache-Control 21.  Minimize the Number of iframes Header 22.  No 404s 4.  Gzip Components 23.  Reduce Cookie Size 5.  Put Stylesheets at the Top 24.  Use Cookie-free Domains for 6.  Put Scripts at the Bottom Components 7.  Avoid CSS Expressions 25.  Minimize DOM Access 8.  Make JavaScript and CSS External 26.  Develop Smart Event Handlers 9.  Reduce DNS Lookups 27.  Choose <link> over @import 10.  Minify JavaScript and CSS 28.  Avoid Filters 11.  Avoid Redirects 29.  Optimize Images 12.  Remove Duplicate JS and CSS 30.  Optimize CSS Sprites 13.  Configure ETags 31.  Don't Scale Images in HTML 14.  Make Ajax Cacheable 32.  Make favicon.ico Small and 15.  Flush the Buffer Early Cacheable 16.  Use GET for AJAX Requests 33.  Keep Components under 25K 17.  Post-load Components 34.  Pack Components into a Multipart Document 18.  Preload Components
  • 107. YSlow 2.0. rules 1.  Make Fewer HTTP Requests 19.  Reduce the Number of DOM Elements 2.  Use a Content Delivery Network 20.  Split Components Across Domains 3.  Add an Expires or a Cache-Control 21.  Minimize the Number of iframes Header 22.  No 404s 4.  Gzip Components 23.  Reduce Cookie Size 5.  Put Stylesheets at the Top 24.  Use Cookie-free Domains for 6.  Put Scripts at the Bottom Components 7.  Avoid CSS Expressions 25.  Minimize DOM Access 8.  Make JavaScript and CSS External 26.  Develop Smart Event Handlers 9.  Reduce DNS Lookups 27.  Choose <link> over @import 10.  Minify JavaScript and CSS 28.  Avoid Filters 11.  Avoid Redirects 29.  Optimize Images 12.  Remove Duplicate JS and CSS 30.  Optimize CSS Sprites 13.  Configure ETags 31.  Don't Scale Images in HTML 14.  Make Ajax Cacheable 32.  Make favicon.ico Small and 15.  Flush the Buffer Early Cacheable 16.  Use GET for AJAX Requests 33.  Keep Components under 25K 17.  Post-load Components 34.  Pack Components into a Multipart Document 18.  Preload Components
  • 108. YSlow 1.0. rule weights 1.  Make Fewer HTTP Requests 8 2.  Use a Content Delivery Network 6 3.  Add an Expires or a Cache-Control Header 10 4.  Gzip Components 8 5.  Put Stylesheets at the Top 4 6.  Put Scripts at the Bottom 4 7.  Avoid CSS Expressions 3 8.  Make JavaScript and CSS External 4 9.  Reduce DNS Lookups 3 10.  Minify JavaScript 4 11.  Avoid Redirects 4 12.  Remove Duplicate JS 4 13.  Configure Etags 2
  • 109. YSlow 2.0. rule weights 1.  Make Fewer HTTP Requests 8 2.  Use a Content Delivery Network 6 3.  Add an Expires or a Cache-Control Header 10 4.  Gzip Components 8 5.  Put Stylesheets at the Top 4 6.  Put Scripts at the Bottom 4 7.  Avoid CSS Expressions 3 8.  Make JavaScript and CSS External 4 9.  Reduce DNS Lookups 3 10.  Minify JavaScript and CSS 4 11.  Avoid Redirects 4 12.  Remove Duplicate JS and CSS 4 13.  Configure Etags 2 14.  Make Ajax Cacheable 4 16.  Use GET for AJAX Requests 3 19.  Reduce the Number of DOM Elements 3 22.  No 404s 4 23.  Reduce Cookie Size 3 24.  Use Cookie-free Domains for Components 3 28.  Avoid Filters 4 31.  Don't Scale Images in HTML 3 32.  Make favicon.ico Small and Cacheable 2
  • 110. YSlow score foreach rule total += rule score * rule weight end foreach score = total / sum of rule weights
  • 111. YSlow letter score •  (A) 90 – 100 •  (B) 80 – 89 •  (C) 70 – 79 •  (D) 60 – 69 •  (E) 50 – 59 •  (F) under 50
  • 112. Custom rule 1.  Add an Expires Header 2.  Configure Etags Rule Weight Rule score * Expires header 10 100 (A) 1000 ETags 2 50 (E) 100 Total 12 1100 Score = 1100 / 12 = 91.66 (A) Note: max weight is 10, min rule score is 0
  • 113. Rule scores •  Start from 100 •  Penalty for every offence
  • 114. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External # ok -points 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS JS 3 -4/off 11.  Avoid Redirects CSS 2 -4/off 12.  Remove Duplicate JS and CSS 13.  Configure Etags img 6 -3/off 14.  Make Ajax Cacheable 16.  Use GET for AJAX Requests 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 115. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects -10 points 12.  Remove Duplicate JS and CSS 13.  Configure Etags per 14.  Make Ajax Cacheable offending 16.  Use GET for AJAX Requests component 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 116. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add Expires Headers 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS If expiration 11.  Avoid Redirects is less than 12.  Remove Duplicate JS and CSS 13.  Configure Etags 2 days 14.  Make Ajax Cacheable subtract -11 16.  Use GET for AJAX Requests points per 19.  Reduce the Number of DOM Elements component 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 117. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS -11 points 11.  Avoid Redirects per 12.  Remove Duplicate JS and CSS 13.  Configure Etags offending 14.  Make Ajax Cacheable component 16.  Use GET for AJAX Requests bigger than 19.  Reduce the Number of DOM Elements 500 bytes 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 118. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects -10 points 12.  Remove Duplicate JS and CSS 13.  Configure Etags per 14.  Make Ajax Cacheable offending 16.  Use GET for AJAX Requests component 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 119. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects -5 points 12.  Remove Duplicate JS and CSS 13.  Configure Etags per 14.  Make Ajax Cacheable offending 16.  Use GET for AJAX Requests component 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 120. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS -2 points 13.  Configure Etags per Make Ajax Cacheable 14.  16.  Use GET for AJAX Requests expression 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 121. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JS and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS 13.  Configure Etags 14.  Make Ajax Cacheable Score is 16.  Use GET for AJAX Requests always n/a 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 122. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects 4 domains 12.  Remove Duplicate JS and CSS ok 13.  Configure Etags -5 points Make Ajax Cacheable 14.  16.  Use GET for AJAX Requests per domain 19.  Reduce the Number of DOM Elements otherwise 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 123. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify -10 points 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS per 13.  Configure Etags offender, Make Ajax Cacheable 14.  16.  Use GET for AJAX Requests including 19.  Reduce the Number of DOM Elements inline 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 124. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS 13.  Configure Etags -10 points 14.  Make Ajax Cacheable per redirect 16.  Use GET for AJAX Requests 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 125. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects 12.  No Duplicates -5 points per 13.  Configure Etags 14.  Make Ajax Cacheable duplicate 16.  Use GET for AJAX Requests JS or CSS 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 126. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS -11 points 13.  Configure ETags per 14.  Make Ajax Cacheable offending 16.  Use GET for AJAX Requests component 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 127. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom -5 points 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External per XHR 9.  Reduce DNS Lookups without at 10.  Minify JavaScript and CSS least 1 hour 11.  Avoid Redirects expiration 12.  Remove Duplicate JS and CSS 13.  Configure Etags 14.  Make Ajax Cacheable 16.  Use GET for AJAX Requests 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 128. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top -5 points 6.  Put Scripts at the Bottom per 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External non-GET 9.  Reduce DNS Lookups XHR 10.  Minify JavaScript and CSS 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS 13.  Configure Etags 14.  Make Ajax Cacheable 16.  Use GET for AJAX Requests 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 129. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top -10 points 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions for every 8.  Make JavaScript and CSS External 250 9.  Reduce DNS Lookups elements 10.  Minify JavaScript and CSS over 900 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS 13.  Configure Etags 14.  Make Ajax Cacheable 16.  Use GET for AJAX Requests 19.  Reduce # of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 130. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS 13.  Configure Etags -5 points 14.  Make Ajax Cacheable per 16.  Use GET for AJAX Requests 19.  Reduce the Number of DOM Elements offending component 22.  No 404s 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 131. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects -10 points 12.  Remove Duplicate JS and CSS per 13.  Configure Etags 14.  Make Ajax Cacheable component 16.  Use GET for AJAX Requests requested 19.  Reduce the Number of DOM Elements with over No 404s 22.  1000 bytes 23.  Reduce Cookie Size of cookies 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 132. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions -5 points 8.  Make JavaScript and CSS External per Reduce DNS Lookups 9.  10.  Minify JavaScript and CSS component 11.  Avoid Redirects requested 12.  Remove Duplicate JS and CSS with a 13.  Configure Etags cookie 14.  Make Ajax Cacheable 16.  Use GET for AJAX Requests 19.  Reduce the Number of DOM Elements 22.  No 404s 23.  Reduce Cookie Size 24.  Cookie-free Domains 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 133. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS -5 points 13.  Configure Etags 14.  Make Ajax Cacheable per offense 16.  Use GET for AJAX Requests or 19.  Reduce the Number of DOM Elements -2 if using No 404s 22.  23.  Reduce Cookie Size _filter hack 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 134. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS 13.  Configure Etags -5 points 14.  Make Ajax Cacheable per scaled 16.  Use GET for AJAX Requests 19.  Reduce the Number of DOM Elements down 22.  No 404s image 23.  Reduce Cookie Size 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Make favicon.ico Small and Cacheable
  • 135. Rule penalties 1.  Make Fewer HTTP Requests 2.  Use a Content Delivery Network 3.  Add an Expires or a Cache-Control Header 4.  Gzip Components 5.  Put Stylesheets at the Top 6.  Put Scripts at the Bottom 7.  Avoid CSS Expressions 8.  Make JavaScript and CSS External 9.  Reduce DNS Lookups 10.  Minify JavaScript and CSS 11.  Avoid Redirects 12.  Remove Duplicate JS and CSS -5 points if 13.  Configure Etags 14.  Make Ajax Cacheable size is over 16.  Use GET for AJAX Requests 2000 bytes 19.  Reduce the Number of DOM Elements and -5 if no No 404s 22.  23.  Reduce Cookie Size expiration 24.  Use Cookie-free Domains for Components 28.  Avoid Filters 31.  Don't Scale Images in HTML 32.  Small cacheable favicon
  • 138. Performance matters •  It affects the user happiness •  It affects the bottom line
  • 139. Front-end •  That’s where most of the time is spent
  • 140. It’s a marathon •  Not a sprint •  Measure, monitor, link to business metrics •  Bugs are expensive as the time passes, performance bugs even more so
  • 141. What’s a low-hanging fruit? •  Takes one engineer •  Takes 15 minutes Steve Krug
  • 142. For non-low-hanging fruits? 1.  Pick 2 or 3 2.  Fix, measure one by one 3.  Come back and iterate