一. 基础知识
2) TTFB延迟诊断
4) 浏览器并发Http请求数
二. 工具
1) 5 Tools to Speed Up Your Web Site
2) WebPageTest
3) Glimpse
三. 性能提升方案
2) IIS设置缓存策略
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlCustom="public"
cacheControlMaxAge="365.00:00:00" cacheControlMode="UseMaxAge" />
</staticContent>
</system.webServer>
</configuration>
3) Best Practices for Speeding Up Your Web Site
四. 使用CDN服务
1) 如何在页面引入CDN
2) 国内网站常用的一些 CDN 公共库加速服务
http://www.oschina.net/news/53128/public-cdn
http://www.freehao123.com/2014-cdn/
五. 配置子域名提供静态资源服务
六. 其它