[フレーム]
PPTX, PDF24,845 views

Performance Implications of Mobile Design

The document discusses the performance implications of mobile design, focusing on dedicated sites (mdot) and responsive web design (RWD). It highlights key performance issues such as redirects for mdot sites and over-downloading for RWD, along with strategies to enhance mobile performance. The author emphasizes the importance of integrating performance considerations into the design process and provides tools for measurement and testing.

Embed presentation

Downloaded 435 times
Performance Implications of Mobile Design Guy Podjarny @guypod guy@akamai.com http://blaze.io/blog/ Akamai Confidential
Good Morning! Faster ForwardTM ©2012 Akamai
Agenda • Performance Matters! • Focus on top Mobile Design Paradigms • A bit on Dedicates Sites (mdot) • A lot on Responsive Web Design • Review Performance each Paradigm • Dig into the top performance problem • Show what went wrong • Discuss how you can fix it • Share tools that can help • And how to use them • Summary Faster ForwardTM ©2012 Akamai
Who Am I #1: Ex-CTO of Blaze.io (now Akamai) Faster ForwardTM ©2012 Akamai
Who Am I #2: Blaze Mobitest • Mobile Web Performance Measurement • Free Online Service: http://akamai.com/mobitest/ • Now Open-Source! • For more details: http://bit.ly/open-source-mobitest Faster ForwardTM ©2012 Akamai
Who Am I #3: Mobile Performance Researcher http://blaze.io/blog/ Faster ForwardTM ©2012 Akamai
Some Terminology Faster ForwardTM ©2012 Akamai
Dedicated Sites (mdot) URL/Website Per Device Profile m.walmart.com www.walmart.com Faster ForwardTM ©2012 Akamai
Responsive Web Design One URL, Adapt to screen size http://mediaqueri.es/mq/ Faster ForwardTM ©2012 Akamai
Mobile First & Desktop First included in RWD Mobile First (Progressive Enhancement) Desktop First (Graceful Degradation) Faster ForwardTM ©2012 Akamai
Waterfall Charts Resource Doc Complete, Waterfall (Request/Response) (a.k.a. onload, Chart Start Render Load Time) Faster ForwardTM ©2012 Akamai
Please don‟t hate me... • I use real world examples • Possibly written by you... • Constructive feedback != bashing • These are common mistakes • We should learn from them • I tried to spread the blame • Plenty of sites to choose from... • If you fix it, let me know! • I‟ll spread the word Faster ForwardTM ©2012 Akamai
Performance Matters! Akamai Confidential
Users Expect Fast Sites Source: Akamai Faster ForwardTM ©2012 Akamai
Users Abandon Slow Sites Page Abandonment vs. Load Time Source: KISS Metrics Faster ForwardTM ©2012 Akamai
Fast Sites Help Bottom Lines Shopzilla: 5 sec load time improvement Source: Shopzilla Faster ForwardTM ©2012 Akamai
Mobile Users Expect Equal Speeds Source: Gomez Faster ForwardTM ©2012 Akamai
Dedicated Sites (mdot) Akamai Confidential
Mdot Dedicated Sites don‟t create new performance problems Still have old problems, but that‟s not related to mobile design Faster ForwardTM ©2012 Akamai
Small Mobile Site, Small Waterfall Chart www.cnn.com , iPhone 4, iOS 5.0 Faster ForwardTM ©2012 Akamai
Big Desktop/Tablet Site, Big Waterfall Chart www.cnn.com iPad 2 iOS 5 Faster ForwardTM ©2012 Akamai
Dedicated Sites Top Performance Problem Redirects m. www. Faster ForwardTM ©2012 Akamai
Redirects are expensive! www.espn.com 2 redirects, 1.3 seconds lost Faster ForwardTM ©2012 Akamai
Late Redirect using scripts are even slower www.disney.com 2 redirects + JS Redirect, 3 seconds lost Faster ForwardTM ©2012 Akamai
Could get nasty www.garmin.com 3 redirects + JS Redirect, 3.6 seconds lost Faster ForwardTM ©2012 Akamai
Redirects – What To Do? • Minimize Redirects • Merge redirect chains • Use HTTP Redirects, not JS redirects • Keep the client-side detection as backup • Detect most devices server-side • Cache HTTP Redirects on the CDN • Makes the extra round trip shorter • Use HTTP 301 Redirect, with a future Expiry • 302/303/307 redirects are not cached by the browser • Good test page (by @souders): http://bit.ly/redirect-cache-test Faster ForwardTM ©2012 Akamai
Responsive Web Design Akamai Confidential
Responsive Web Design Responsive Web Design Top Performance Problem: Over-Downloading Faster ForwardTM ©2012 Akamai
Test – Compare Sites on Different Resolutions • Data: • 347 Sites from http://mediaqueri.es/ • Testing Methodology: • Use http://webpagetest.org/ • Use Chrome browser • Resize window before each measurement •Resolutions: 320x480, 480x960, 1024x768, 1600x1200 • Saw similar results with iPhone vs. iPad tests • Collect Results • Excel & Pivot Tables (Automated version of Jason Grigsby‟s test last year) © Faster ForwardTM ©2012 Akamai
Responsive Sites Load Times & Size, by Resolution Load Time* by Resolution (ms) 4,000 3,500 3,000 2,500 2,000 1,500 1,000 500 0 Page Size by Resolution (KB) 1,200 1,000 800 600 400 200 0 * Over Cable Speed (5 Mbps down, 1 Mbps up, 28ms RTT) Faster ForwardTM ©2012 Akamai
Small Screen = Less Visible Content != Less Bytes 320x48 1600x120 0 0 Faster ForwardTM ©2012 Akamai
Some depressing stats... Page Size 10 Got Lucky 320x480 A Bit Smaller (BG 11% Image, Fonts, vs ...) 1600x1200 Much Smaller 3% Same Size 86% 1 Responsive Images A bit smaller = 50%-90% the size Much smaller = <50% the size Faster ForwardTM ©2012 Akamai
Big Site, Big Waterfall 1600x120 0 Faster ForwardTM ©2012 Akamai
Small Site, Big Waterfall 320x480 Faster ForwardTM ©2012 Akamai
Download and Hide Rich Side-bar, holds ads and more Display set to none Faster ForwardTM ©2012 Akamai
Hidden content is still downloaded Display set to none, resources are still downloaded! Faster ForwardTM ©2012 Akamai
Download and Shrink Smaller Screen, Same Size Image Faster ForwardTM ©2012 Akamai
Media queries don‟t prevent CSS downloads Separate CSS per media basic.css mobile.css 320x480 "Right" CSS loaded "Wrong" CSS loaded - May be used by JavaScript - Possibly delayed till just before onload desktop.css Faster ForwardTM ©2012 Akamai
Excess DOM 1402 elements 1398 elements 3485 nodes 3491 nodes Simplicity not reflected in DOM 1600x1200 320x480 Faster ForwardTM ©2012 Akamai
RWD Woes • Download and Hide • Download and Shrink • Extra CSS Download • Excess DOM Faster ForwardTM ©2012 Akamai
What Can We Do About It?! Akamai Confidential
Images accounts for most mobile pages size Stats from http://mobile.httparchive.com/ Faster ForwardTM ©2012 Akamai
Responsive Images 128px, 240px, 6.8 KB 2.9 KB 320px, 10.6 KB 480px, 21.3 KB Site: lonelyplanet.com Device: iPhone 4 Before: Full Res, 50.1 KB 867 KB After: 570 KB Faster ForwardTM ©2012 Akamai
Responding Up (or badly?) ipad_hero.jpg 113 KB Served to Desktop ipad_hero_2x.jpg 360 KB Served to New iPad Faster ForwardTM ©2012 Akamai
Low Hanging Fruit: Responsive Images • Responsive Images = Serve lower res images to smaller screens • Optionally load full res image in the background • Lots of great resources on how to do it • Cloud Four blog - Education • Sencha.io Src – Helper Tool • Responsive images apply to CSS too! • Especially to background images • And stop with the huge images! Faster ForwardTM ©2012 Akamai
Build Mobile First • Don‟t just design Mobile First – Code a Mobile-only site • Build only for the lowest resolution you care about • Adapt to similar screen sizes: No layout shifts, no big resolution jumps • Performance should compare to mdot sites • Once implemented – Enhance via JavaScript • Grow DOM only on screens that need it. • Desktop clients with no JS support are a minority • Your mobile site should be good enough for those • Don‟t sacrifice the performance of 99% for the remaining 1% Faster ForwardTM ©2012 Akamai
Enhancing via JavaScript – Tips & Tricks 1600px • Split your files by layout/resolution 480 • Duplicating content on the server is ok 320 px px • Duplicating download is not • Use Inline JavaScript to decide the layout • Then use external (cacheable) files to apply it • Put scripts that change design at the top • JavaScript blocks rendering • Will avoid FOUC – Flash Of Unstyled Content • Put all other scripts at the bottom var css = „small.css‟; if (window.innerWidth > 640) css = „large.css‟; else if (window.innerWidth >= 320) css = „medium.css‟; document.write(„<link type="stylesheet" rel="stylesheet" href=
Don‟t forget the "regular" concerns • Reduce HTTP requests • Consolidate Files • Inline tiny files • Reduce bytes • Minify CSS/JS • Use Lossless Compression for Images • Load visible content first • Defer everything else • Or Load it on demand • Avoid CSS Imports •... Faster ForwardTM ©2012 Akamai
Measure! • Mobitest • Online service: http://akamai.com/mobitest/ • Install local open-source version (details) • Google‟s Pcapperf • Convert network capture to waterfall charts • http://pcapperf.appspot.com/ • Stoyan Stefanov‟s "icy" • HTTP insight into iOS HTTP requests • https://github.com/stoyan/icy • @firt‟s iWebInspector • Remote debugger for iOS simulator • http://www.iwebinspector.com/ 49 Faster ForwardTM ©2012 Akamai
Testing different screen dimensions • Run webpagetest script with resizing • Use Chrome as agent (not supported on other browsers) • Sample script (tab delimited): setviewportsize 320 480 navigate http://bdconf.org/ • Many other scripting options:https://sites.google.com/a/webpagetest.org/docs/using- webpagetest/scripting • Figure out the viewport dimensions you want to simulate • http://www.websitedimensions.com/ Faster ForwardTM ©2012 Akamai
Summary Akamai Confidential
Summary • Choosing your mobile design is HARD • There are many factors to consider • Design Decision have Performance Implications • Mdot Primary Concern: Redirects • RWD Primary Concern: Over-Downloading • Either design paradigm can be made fast • Performance should be built in – not bolted on • Measure! • Make perf testing a part the core functionality test Faster ForwardTM ©2012 Akamai
Questions? Performance Implications of Mobile Design Guy Podjarny @guypod guy@akamai.com http://blaze.io/blog/ Akamai Confidential

More Related Content

Step by Step Mobile Optimization
PPTX
Step by Step Mobile Optimization
Performance Implications of Mobile Design (Perf Audience Edition)
PPTX
Performance Implications of Mobile Design (Perf Audience Edition)
Velocity 2012: The 90-Minute Mobile Optimization Life Cycle
PDF
Velocity 2012: The 90-Minute Mobile Optimization Life Cycle
Quantifying The Mobile Difference
PPTX
Quantifying The Mobile Difference
High Performance Mobile Web
PPTX
High Performance Mobile Web
Going Fast on the Mobile Web
PDF
Going Fast on the Mobile Web
High Performance Mobile Web
PDF
High Performance Mobile Web
High Performance Mobile Web
PDF
High Performance Mobile Web
Step by Step Mobile Optimization
Step by Step Mobile Optimization
Performance Implications of Mobile Design (Perf Audience Edition)
Performance Implications of Mobile Design (Perf Audience Edition)
Velocity 2012: The 90-Minute Mobile Optimization Life Cycle
Velocity 2012: The 90-Minute Mobile Optimization Life Cycle
Quantifying The Mobile Difference
Quantifying The Mobile Difference
High Performance Mobile Web
High Performance Mobile Web
Going Fast on the Mobile Web
Going Fast on the Mobile Web
High Performance Mobile Web
High Performance Mobile Web
High Performance Mobile Web
High Performance Mobile Web

What's hot

Mobile Web Best Practices
PDF
Mobile Web Best Practices
Imagesandvideo tallinn
PPTX
Imagesandvideo tallinn
Imagesandvideo stockholm webmeetup
PPTX
Imagesandvideo stockholm webmeetup
Threadneedle when its just too slow
PPTX
Threadneedle when its just too slow
Testing Mobile App Performance MOT Edinburgh
PPTX
Testing Mobile App Performance MOT Edinburgh
Mot cph when its just too slow
PPTX
Mot cph when its just too slow
Faster web pages
PDF
Faster web pages
High Performance Web - Full Stack Toronto
PDF
High Performance Web - Full Stack Toronto
Nantes when its just too slow
PPTX
Nantes when its just too slow
Optimizing WordPress Performance
PDF
Optimizing WordPress Performance
10+апреля+лучшие+практики+и+инновации+вадим+береговский+akamai
PPSX
10+апреля+лучшие+практики+и+инновации+вадим+береговский+akamai
Seatwave Web Peformance Optimisation Case Study
PDF
Seatwave Web Peformance Optimisation Case Study
Performance as UX with Justin Howlett
PDF
Performance as UX with Justin Howlett
byFITC
Developing High Performance Web Apps - CodeMash 2011
KEY
Developing High Performance Web Apps - CodeMash 2011
Extending JMS to Web Devices over HTML5 WebSockets - JavaOne 2011
PDF
Extending JMS to Web Devices over HTML5 WebSockets - JavaOne 2011
Optimizing Sites for Mobile Devices
PPT
Optimizing Sites for Mobile Devices
Web前端性能分析工具导引
PPT
Web前端性能分析工具导引
Mobius keynote
PPTX
Mobius keynote
FastView acceleration overview
PPTX
FastView acceleration overview
Happy Browser, Happy User! NY Web Performance Meetup 9/20/19
PDF
Happy Browser, Happy User! NY Web Performance Meetup 9/20/19
Mobile Web Best Practices
Mobile Web Best Practices
Imagesandvideo tallinn
Imagesandvideo tallinn
Imagesandvideo stockholm webmeetup
Imagesandvideo stockholm webmeetup
Threadneedle when its just too slow
Threadneedle when its just too slow
Testing Mobile App Performance MOT Edinburgh
Testing Mobile App Performance MOT Edinburgh
Mot cph when its just too slow
Mot cph when its just too slow
Faster web pages
Faster web pages
High Performance Web - Full Stack Toronto
High Performance Web - Full Stack Toronto
Nantes when its just too slow
Nantes when its just too slow
Optimizing WordPress Performance
Optimizing WordPress Performance
10+апреля+лучшие+практики+и+инновации+вадим+береговский+akamai
10+апреля+лучшие+практики+и+инновации+вадим+береговский+akamai
Seatwave Web Peformance Optimisation Case Study
Seatwave Web Peformance Optimisation Case Study
Performance as UX with Justin Howlett
Performance as UX with Justin Howlett
byFITC
Developing High Performance Web Apps - CodeMash 2011
Developing High Performance Web Apps - CodeMash 2011
Extending JMS to Web Devices over HTML5 WebSockets - JavaOne 2011
Extending JMS to Web Devices over HTML5 WebSockets - JavaOne 2011
Optimizing Sites for Mobile Devices
Optimizing Sites for Mobile Devices
Web前端性能分析工具导引
Web前端性能分析工具导引
Mobius keynote
Mobius keynote
FastView acceleration overview
FastView acceleration overview
Happy Browser, Happy User! NY Web Performance Meetup 9/20/19
Happy Browser, Happy User! NY Web Performance Meetup 9/20/19

Similar to Performance Implications of Mobile Design

Etail West 2013 Akamai CEO Tom Leighton_Final
PPTX
Etail West 2013 Akamai CEO Tom Leighton_Final
Etail 2012 Akamai Chief Scientist keynote
PPTX
Etail 2012 Akamai Chief Scientist keynote
eTail Keynote from Akamai CEO Tom Leighton
PPTX
eTail Keynote from Akamai CEO Tom Leighton
DIY Website Performance - Akamai Toronto Tech Day 2015
PDF
DIY Website Performance - Akamai Toronto Tech Day 2015
Akamai partner training by Malcolm Rowe
PDF
Akamai partner training by Malcolm Rowe
Unravelling Mobile Web Performance
PDF
Unravelling Mobile Web Performance
Holiday Retail Readiness: Preparing For Peak
PDF
Holiday Retail Readiness: Preparing For Peak
Chicago Tech Day Jan 2015: RWD
PPTX
Chicago Tech Day Jan 2015: RWD
Responsive In The Wild, 2014
PDF
Responsive In The Wild, 2014
Akamai: From Theory to Practice
PPTX
Akamai: From Theory to Practice
Akamai 如何幫您的客戶用網站賺錢 how to monetize your site
PDF
Akamai 如何幫您的客戶用網站賺錢 how to monetize your site
5 Best Practices For Blazing Fast Website Performance presented by Gomez & Fo...
PDF
5 Best Practices For Blazing Fast Website Performance presented by Gomez & Fo...
High Performance Websites
PDF
High Performance Websites
Speed is Essential for a Great Web Experience (Canvas Conf Version)
PDF
Speed is Essential for a Great Web Experience (Canvas Conf Version)
Performance automation 101 @LDNWebPerf MickMcGuinness
PDF
Performance automation 101 @LDNWebPerf MickMcGuinness
高性能网站建设指南
PDF
高性能网站建设指南
Web Performance 101
PPTX
Web Performance 101
Faster mobile sites
PDF
Faster mobile sites
A little journey into website optimization
PDF
A little journey into website optimization
Speed is Essential for a Great Web Experience
KEY
Speed is Essential for a Great Web Experience
Etail West 2013 Akamai CEO Tom Leighton_Final
Etail West 2013 Akamai CEO Tom Leighton_Final
Etail 2012 Akamai Chief Scientist keynote
Etail 2012 Akamai Chief Scientist keynote
eTail Keynote from Akamai CEO Tom Leighton
eTail Keynote from Akamai CEO Tom Leighton
DIY Website Performance - Akamai Toronto Tech Day 2015
DIY Website Performance - Akamai Toronto Tech Day 2015
Akamai partner training by Malcolm Rowe
Akamai partner training by Malcolm Rowe
Unravelling Mobile Web Performance
Unravelling Mobile Web Performance
Holiday Retail Readiness: Preparing For Peak
Holiday Retail Readiness: Preparing For Peak
Chicago Tech Day Jan 2015: RWD
Chicago Tech Day Jan 2015: RWD
Responsive In The Wild, 2014
Responsive In The Wild, 2014
Akamai: From Theory to Practice
Akamai: From Theory to Practice
Akamai 如何幫您的客戶用網站賺錢 how to monetize your site
Akamai 如何幫您的客戶用網站賺錢 how to monetize your site
5 Best Practices For Blazing Fast Website Performance presented by Gomez & Fo...
5 Best Practices For Blazing Fast Website Performance presented by Gomez & Fo...
High Performance Websites
High Performance Websites
Speed is Essential for a Great Web Experience (Canvas Conf Version)
Speed is Essential for a Great Web Experience (Canvas Conf Version)
Performance automation 101 @LDNWebPerf MickMcGuinness
Performance automation 101 @LDNWebPerf MickMcGuinness
高性能网站建设指南
高性能网站建设指南
Web Performance 101
Web Performance 101
Faster mobile sites
Faster mobile sites
A little journey into website optimization
A little journey into website optimization
Speed is Essential for a Great Web Experience
Speed is Essential for a Great Web Experience

More from Guy Podjarny

Serverless Security: What's Left To Protect
PDF
Serverless Security: What's Left To Protect
Securing Serverless - By Breaking In
PDF
Securing Serverless - By Breaking In
Serverless Security: What's Left to Protect?
PDF
Serverless Security: What's Left to Protect?
Secure Node Code (workshop, O'Reilly Security)
PDF
Secure Node Code (workshop, O'Reilly Security)
Stranger Danger (NodeSummit, 2016)
PDF
Stranger Danger (NodeSummit, 2016)
Stranger Danger: Securing Third Party Components (Tech2020)
PDF
Stranger Danger: Securing Third Party Components (Tech2020)
High Performance Images: Beautiful Shouldn't Mean Slow (Velocity EU 2015)
PDF
High Performance Images: Beautiful Shouldn't Mean Slow (Velocity EU 2015)
HTTPS: What, Why and How (SmashingConf Freiburg, Sep 2015)
PDF
HTTPS: What, Why and How (SmashingConf Freiburg, Sep 2015)
High Performance Images: Beautiful Shouldn't Mean Slow
PDF
High Performance Images: Beautiful Shouldn't Mean Slow
Third Party Performance (Velocity, 2014)
PPTX
Third Party Performance (Velocity, 2014)
Rules driven-delivery
PPTX
Rules driven-delivery
Responsive In The Wild (SmashingConf, 2014)
PPTX
Responsive In The Wild (SmashingConf, 2014)
Putting Your Images on a Diet (SmashingConf, 2014)
PPTX
Putting Your Images on a Diet (SmashingConf, 2014)
Third party-performance (Airbnb Nerds, Nov 2013)
PPTX
Third party-performance (Airbnb Nerds, Nov 2013)
Third Party Performance
PPTX
Third Party Performance
A Picture Costs A Thousand Words
PDF
A Picture Costs A Thousand Words
State Of Mobile Web Performance
PPTX
State Of Mobile Web Performance
Serverless Security: What's Left To Protect
Serverless Security: What's Left To Protect
Securing Serverless - By Breaking In
Securing Serverless - By Breaking In
Serverless Security: What's Left to Protect?
Serverless Security: What's Left to Protect?
Secure Node Code (workshop, O'Reilly Security)
Secure Node Code (workshop, O'Reilly Security)
Stranger Danger (NodeSummit, 2016)
Stranger Danger (NodeSummit, 2016)
Stranger Danger: Securing Third Party Components (Tech2020)
Stranger Danger: Securing Third Party Components (Tech2020)
High Performance Images: Beautiful Shouldn't Mean Slow (Velocity EU 2015)
High Performance Images: Beautiful Shouldn't Mean Slow (Velocity EU 2015)
HTTPS: What, Why and How (SmashingConf Freiburg, Sep 2015)
HTTPS: What, Why and How (SmashingConf Freiburg, Sep 2015)
High Performance Images: Beautiful Shouldn't Mean Slow
High Performance Images: Beautiful Shouldn't Mean Slow
Third Party Performance (Velocity, 2014)
Third Party Performance (Velocity, 2014)
Rules driven-delivery
Rules driven-delivery
Responsive In The Wild (SmashingConf, 2014)
Responsive In The Wild (SmashingConf, 2014)
Putting Your Images on a Diet (SmashingConf, 2014)
Putting Your Images on a Diet (SmashingConf, 2014)
Third party-performance (Airbnb Nerds, Nov 2013)
Third party-performance (Airbnb Nerds, Nov 2013)
Third Party Performance
Third Party Performance
A Picture Costs A Thousand Words
A Picture Costs A Thousand Words
State Of Mobile Web Performance
State Of Mobile Web Performance

Recently uploaded

ENTSO-E's Response to the European Commission Call for Evidence on the Strate...
PDF
ENTSO-E's Response to the European Commission Call for Evidence on the Strate...
Managing SELinux Security - RHCSA (RH134).pdf
PDF
Managing SELinux Security - RHCSA (RH134).pdf
Explaining ourselves – people, computers and AI
PPTX
Explaining ourselves – people, computers and AI
Career Blueprint: Mentor Tracks & Career Clinic - Part 2
PDF
Career Blueprint: Mentor Tracks & Career Clinic - Part 2
Odoo_by_Infinys_All_in_One_Business_Solution_for_Small_Companies.pptx
PPTX
Odoo_by_Infinys_All_in_One_Business_Solution_for_Small_Companies.pptx
Infuse Intelligence Into your App with Foundry Local
PDF
Infuse Intelligence Into your App with Foundry Local
Automating ArcGIS Enterprise Compliance for Operational Excellence
PDF
Automating ArcGIS Enterprise Compliance for Operational Excellence
Open Source SecurityCon 2025 in Atlanta - Transparency Exchange API: Where To...
PDF
Open Source SecurityCon 2025 in Atlanta - Transparency Exchange API: Where To...
What's Driving Growth in the Video Surveillance Market 2025?
PDF
What's Driving Growth in the Video Surveillance Market 2025?
Digital Garage Certification - Google - Viktor Huszag - Online Marketing Fund...
PDF
Digital Garage Certification - Google - Viktor Huszag - Online Marketing Fund...
Webinar: Introduction to LF Energy SEAPATH
PDF
Webinar: Introduction to LF Energy SEAPATH
Governance, Deployment & Methodologies for Agentic Automation [2/3]
PPTX
Governance, Deployment & Methodologies for Agentic Automation [2/3]
Manage Network Security (Firewall) in RHEL - RHCSA (RH134).pdf
PDF
Manage Network Security (Firewall) in RHEL - RHCSA (RH134).pdf
Cyber Security Quiz 1st Year CSE CS Students
PPTX
Cyber Security Quiz 1st Year CSE CS Students
Agile Trailblazers (Scrum Masters, Product Owners, Coaches, Project Managers,...
PDF
Agile Trailblazers (Scrum Masters, Product Owners, Coaches, Project Managers,...
Schedule Future Tasks - RHCSA (RH134).pdf
PDF
Schedule Future Tasks - RHCSA (RH134).pdf
FastTrack CISSP Reference By Jobyer Ahmed
PDF
FastTrack CISSP Reference By Jobyer Ahmed
Build Agentic AI Applications with Oracle AI Database Private Agent Factory
PDF
Build Agentic AI Applications with Oracle AI Database Private Agent Factory
Manage Logical Volume in RHEL - RHCSA (RH134).pdf
PDF
Manage Logical Volume in RHEL - RHCSA (RH134).pdf
Expanding Your Toolbox: Beginners Guide to Controlling Kubernetes Logs
PPTX
Expanding Your Toolbox: Beginners Guide to Controlling Kubernetes Logs
ENTSO-E's Response to the European Commission Call for Evidence on the Strate...
ENTSO-E's Response to the European Commission Call for Evidence on the Strate...
Managing SELinux Security - RHCSA (RH134).pdf
Managing SELinux Security - RHCSA (RH134).pdf
Explaining ourselves – people, computers and AI
Explaining ourselves – people, computers and AI
Career Blueprint: Mentor Tracks & Career Clinic - Part 2
Career Blueprint: Mentor Tracks & Career Clinic - Part 2
Odoo_by_Infinys_All_in_One_Business_Solution_for_Small_Companies.pptx
Odoo_by_Infinys_All_in_One_Business_Solution_for_Small_Companies.pptx
Infuse Intelligence Into your App with Foundry Local
Infuse Intelligence Into your App with Foundry Local
Automating ArcGIS Enterprise Compliance for Operational Excellence
Automating ArcGIS Enterprise Compliance for Operational Excellence
Open Source SecurityCon 2025 in Atlanta - Transparency Exchange API: Where To...
Open Source SecurityCon 2025 in Atlanta - Transparency Exchange API: Where To...
What's Driving Growth in the Video Surveillance Market 2025?
What's Driving Growth in the Video Surveillance Market 2025?
Digital Garage Certification - Google - Viktor Huszag - Online Marketing Fund...
Digital Garage Certification - Google - Viktor Huszag - Online Marketing Fund...
Webinar: Introduction to LF Energy SEAPATH
Webinar: Introduction to LF Energy SEAPATH
Governance, Deployment & Methodologies for Agentic Automation [2/3]
Governance, Deployment & Methodologies for Agentic Automation [2/3]
Manage Network Security (Firewall) in RHEL - RHCSA (RH134).pdf
Manage Network Security (Firewall) in RHEL - RHCSA (RH134).pdf
Cyber Security Quiz 1st Year CSE CS Students
Cyber Security Quiz 1st Year CSE CS Students
Agile Trailblazers (Scrum Masters, Product Owners, Coaches, Project Managers,...
Agile Trailblazers (Scrum Masters, Product Owners, Coaches, Project Managers,...
Schedule Future Tasks - RHCSA (RH134).pdf
Schedule Future Tasks - RHCSA (RH134).pdf
FastTrack CISSP Reference By Jobyer Ahmed
FastTrack CISSP Reference By Jobyer Ahmed
Build Agentic AI Applications with Oracle AI Database Private Agent Factory
Build Agentic AI Applications with Oracle AI Database Private Agent Factory
Manage Logical Volume in RHEL - RHCSA (RH134).pdf
Manage Logical Volume in RHEL - RHCSA (RH134).pdf
Expanding Your Toolbox: Beginners Guide to Controlling Kubernetes Logs
Expanding Your Toolbox: Beginners Guide to Controlling Kubernetes Logs

Performance Implications of Mobile Design

  • 1.
    Performance Implications of Mobile Design Guy Podjarny @guypod guy@akamai.com http://blaze.io/blog/ Akamai Confidential
  • 2.
    Good Morning! Faster ForwardTM ©2012 Akamai
  • 3.
    Agenda • Performance Matters! • Focus on top Mobile Design Paradigms • A bit on Dedicates Sites (mdot) • A lot on Responsive Web Design • Review Performance each Paradigm • Dig into the top performance problem • Show what went wrong • Discuss how you can fix it • Share tools that can help • And how to use them • Summary Faster ForwardTM ©2012 Akamai
  • 4.
    Who Am I #1: Ex-CTO of Blaze.io (now Akamai) Faster ForwardTM ©2012 Akamai
  • 5.
    Who Am I #2: Blaze Mobitest • Mobile Web Performance Measurement • Free Online Service: http://akamai.com/mobitest/ • Now Open-Source! • For more details: http://bit.ly/open-source-mobitest Faster ForwardTM ©2012 Akamai
  • 6.
    Who Am I #3: Mobile Performance Researcher http://blaze.io/blog/ Faster ForwardTM ©2012 Akamai
  • 7.
    Some Terminology Faster ForwardTM ©2012 Akamai
  • 8.
    Dedicated Sites (mdot) URL/Website Per Device Profile m.walmart.com www.walmart.com Faster ForwardTM ©2012 Akamai
  • 9.
    Responsive Web Design One URL, Adapt to screen size http://mediaqueri.es/mq/ Faster ForwardTM ©2012 Akamai
  • 10.
    Mobile First & Desktop First included in RWD Mobile First (Progressive Enhancement) Desktop First (Graceful Degradation) Faster ForwardTM ©2012 Akamai
  • 11.
    Waterfall Charts Resource Doc Complete, Waterfall (Request/Response) (a.k.a. onload, Chart Start Render Load Time) Faster ForwardTM ©2012 Akamai
  • 12.
    Please don‟t hate me... • I use real world examples • Possibly written by you... • Constructive feedback != bashing • These are common mistakes • We should learn from them • I tried to spread the blame • Plenty of sites to choose from... • If you fix it, let me know! • I‟ll spread the word Faster ForwardTM ©2012 Akamai
  • 13.
    Performance Matters! Akamai Confidential
  • 14.
    Users Expect Fast Sites Source: Akamai Faster ForwardTM ©2012 Akamai
  • 15.
    Users Abandon Slow Sites Page Abandonment vs. Load Time Source: KISS Metrics Faster ForwardTM ©2012 Akamai
  • 16.
    Fast Sites Help Bottom Lines Shopzilla: 5 sec load time improvement Source: Shopzilla Faster ForwardTM ©2012 Akamai
  • 17.
    Mobile Users Expect Equal Speeds Source: Gomez Faster ForwardTM ©2012 Akamai
  • 18.
    Dedicated Sites (mdot) Akamai Confidential
  • 19.
    Mdot Dedicated Sites don‟t create new performance problems Still have old problems, but that‟s not related to mobile design Faster ForwardTM ©2012 Akamai
  • 20.
    Small Mobile Site, Small Waterfall Chart www.cnn.com , iPhone 4, iOS 5.0 Faster ForwardTM ©2012 Akamai
  • 21.
    Big Desktop/Tablet Site, Big Waterfall Chart www.cnn.com iPad 2 iOS 5 Faster ForwardTM ©2012 Akamai
  • 22.
    Dedicated Sites Top Performance Problem Redirects m. www. Faster ForwardTM ©2012 Akamai
  • 23.
    Redirects are expensive! www.espn.com 2 redirects, 1.3 seconds lost Faster ForwardTM ©2012 Akamai
  • 24.
    Late Redirect using scripts are even slower www.disney.com 2 redirects + JS Redirect, 3 seconds lost Faster ForwardTM ©2012 Akamai
  • 25.
    Could get nasty www.garmin.com 3 redirects + JS Redirect, 3.6 seconds lost Faster ForwardTM ©2012 Akamai
  • 26.
    Redirects – What To Do? • Minimize Redirects • Merge redirect chains • Use HTTP Redirects, not JS redirects • Keep the client-side detection as backup • Detect most devices server-side • Cache HTTP Redirects on the CDN • Makes the extra round trip shorter • Use HTTP 301 Redirect, with a future Expiry • 302/303/307 redirects are not cached by the browser • Good test page (by @souders): http://bit.ly/redirect-cache-test Faster ForwardTM ©2012 Akamai
  • 27.
    Responsive Web Design Akamai Confidential
  • 28.
    Responsive Web Design Responsive Web Design Top Performance Problem: Over-Downloading Faster ForwardTM ©2012 Akamai
  • 29.
    Test – Compare Sites on Different Resolutions • Data: • 347 Sites from http://mediaqueri.es/ • Testing Methodology: • Use http://webpagetest.org/ • Use Chrome browser • Resize window before each measurement •Resolutions: 320x480, 480x960, 1024x768, 1600x1200 • Saw similar results with iPhone vs. iPad tests • Collect Results • Excel & Pivot Tables (Automated version of Jason Grigsby‟s test last year) © Faster ForwardTM ©2012 Akamai
  • 30.
    Responsive Sites Load Times & Size, by Resolution Load Time* by Resolution (ms) 4,000 3,500 3,000 2,500 2,000 1,500 1,000 500 0 Page Size by Resolution (KB) 1,200 1,000 800 600 400 200 0 * Over Cable Speed (5 Mbps down, 1 Mbps up, 28ms RTT) Faster ForwardTM ©2012 Akamai
  • 31.
    Small Screen = Less Visible Content != Less Bytes 320x48 1600x120 0 0 Faster ForwardTM ©2012 Akamai
  • 32.
    Some depressing stats... Page Size 10 Got Lucky 320x480 A Bit Smaller (BG 11% Image, Fonts, vs ...) 1600x1200 Much Smaller 3% Same Size 86% 1 Responsive Images A bit smaller = 50%-90% the size Much smaller = <50% the size Faster ForwardTM ©2012 Akamai
  • 33.
    Big Site, Big Waterfall 1600x120 0 Faster ForwardTM ©2012 Akamai
  • 34.
    Small Site, Big Waterfall 320x480 Faster ForwardTM ©2012 Akamai
  • 35.
    Download and Hide Rich Side-bar, holds ads and more Display set to none Faster ForwardTM ©2012 Akamai
  • 36.
    Hidden content is still downloaded Display set to none, resources are still downloaded! Faster ForwardTM ©2012 Akamai
  • 37.
    Download and Shrink Smaller Screen, Same Size Image Faster ForwardTM ©2012 Akamai
  • 38.
    Media queries don‟t prevent CSS downloads Separate CSS per media basic.css mobile.css 320x480 "Right" CSS loaded "Wrong" CSS loaded - May be used by JavaScript - Possibly delayed till just before onload desktop.css Faster ForwardTM ©2012 Akamai
  • 39.
    Excess DOM 1402 elements 1398 elements 3485 nodes 3491 nodes Simplicity not reflected in DOM 1600x1200 320x480 Faster ForwardTM ©2012 Akamai
  • 40.
    RWD Woes • Download and Hide • Download and Shrink • Extra CSS Download • Excess DOM Faster ForwardTM ©2012 Akamai
  • 41.
    What Can We Do About It?! Akamai Confidential
  • 42.
    Images accounts for most mobile pages size Stats from http://mobile.httparchive.com/ Faster ForwardTM ©2012 Akamai
  • 43.
    Responsive Images 128px, 240px, 6.8 KB 2.9 KB 320px, 10.6 KB 480px, 21.3 KB Site: lonelyplanet.com Device: iPhone 4 Before: Full Res, 50.1 KB 867 KB After: 570 KB Faster ForwardTM ©2012 Akamai
  • 44.
    Responding Up (or badly?) ipad_hero.jpg 113 KB Served to Desktop ipad_hero_2x.jpg 360 KB Served to New iPad Faster ForwardTM ©2012 Akamai
  • 45.
    Low Hanging Fruit: Responsive Images • Responsive Images = Serve lower res images to smaller screens • Optionally load full res image in the background • Lots of great resources on how to do it • Cloud Four blog - Education • Sencha.io Src – Helper Tool • Responsive images apply to CSS too! • Especially to background images • And stop with the huge images! Faster ForwardTM ©2012 Akamai
  • 46.
    Build Mobile First • Don‟t just design Mobile First – Code a Mobile-only site • Build only for the lowest resolution you care about • Adapt to similar screen sizes: No layout shifts, no big resolution jumps • Performance should compare to mdot sites • Once implemented – Enhance via JavaScript • Grow DOM only on screens that need it. • Desktop clients with no JS support are a minority • Your mobile site should be good enough for those • Don‟t sacrifice the performance of 99% for the remaining 1% Faster ForwardTM ©2012 Akamai
  • 47.
    Enhancing via JavaScript – Tips & Tricks 1600px • Split your files by layout/resolution 480 • Duplicating content on the server is ok 320 px px • Duplicating download is not • Use Inline JavaScript to decide the layout • Then use external (cacheable) files to apply it • Put scripts that change design at the top • JavaScript blocks rendering • Will avoid FOUC – Flash Of Unstyled Content • Put all other scripts at the bottom var css = „small.css‟; if (window.innerWidth > 640) css = „large.css‟; else if (window.innerWidth >= 320) css = „medium.css‟; document.write(„<link type="stylesheet" rel="stylesheet" href="‟+css+‟"/>‟); Faster ForwardTM ©2012 Akamai
  • 48.
    Don‟t forget the "regular" concerns • Reduce HTTP requests • Consolidate Files • Inline tiny files • Reduce bytes • Minify CSS/JS • Use Lossless Compression for Images • Load visible content first • Defer everything else • Or Load it on demand • Avoid CSS Imports •... Faster ForwardTM ©2012 Akamai
  • 49.
    Measure! • Mobitest • Online service: http://akamai.com/mobitest/ • Install local open-source version (details) • Google‟s Pcapperf • Convert network capture to waterfall charts • http://pcapperf.appspot.com/ • Stoyan Stefanov‟s "icy" • HTTP insight into iOS HTTP requests • https://github.com/stoyan/icy • @firt‟s iWebInspector • Remote debugger for iOS simulator • http://www.iwebinspector.com/ 49 Faster ForwardTM ©2012 Akamai
  • 50.
    Testing different screen dimensions • Run webpagetest script with resizing • Use Chrome as agent (not supported on other browsers) • Sample script (tab delimited): setviewportsize 320 480 navigate http://bdconf.org/ • Many other scripting options:https://sites.google.com/a/webpagetest.org/docs/using- webpagetest/scripting • Figure out the viewport dimensions you want to simulate • http://www.websitedimensions.com/ Faster ForwardTM ©2012 Akamai
  • 51.
    Summary Akamai Confidential
  • 52.
    Summary • Choosing your mobile design is HARD • There are many factors to consider • Design Decision have Performance Implications • Mdot Primary Concern: Redirects • RWD Primary Concern: Over-Downloading • Either design paradigm can be made fast • Performance should be built in – not bolted on • Measure! • Make perf testing a part the core functionality test Faster ForwardTM ©2012 Akamai
  • 53.
    Questions? Performance Implications of Mobile Design Guy Podjarny @guypod guy@akamai.com http://blaze.io/blog/ Akamai Confidential

AltStyle によって変換されたページ (->オリジナル) /