Enterprise Framework

Software Solutions in the Enterprise

TechEd : Video : Performance Optimize Your ASP.NET Web App by Mads Kristensen Review

Performance Optimize Your ASP.NET Web App by Mads Kristensen

This video is a must watch:



Key highlights are:

  • Revenue Impact of traffic by slowing a website
    • Google study
    • Amazon study
  • Using ASP.NET 4.5, you will automatically get
    • A faster start up time by 30%
    • 30% lower memory use
  • Where to focus to get the biggest gain
    • 13% Back
    • 87% Front
  • Web Developer Checklist
  • Developer Tools
  • Step by Step walk through of changes to improve performance
    • Gzip
      • Enabled by default on IIS 7.5
      • Web.Config Update
        • system.webServer > urlCompression
    • Bundling of multiple CSS files using Web Essentials
      • Right Click Multiple CSS files and click Bundle
    • Setting Expires Header for static content
      • Web.Config Update
        • system.webServer > staticContent > clientCache 
    • Cache busting strategy
      • Querystring Cache busting vs Path Cache busting with Fingerprint
      • Using Url Rewrite to assist on virtual url
    • Javascript Files
      • Bundling of multiple javascript files
      • Minimizr.js
      • Place at the bottom
      • script attributes
        • defer
        • async
    • Minify css & javascript files
    • Image lossless compression
    • Illiminate calls for images by
      • Base64 Data Uri Images
    • Favicon compression
    • Minify the HTML
      • Using a HttpModule to remove Whitespace
    • Caching on the server using Output Caching

Comments are closed