您的位置:首页 > 运维架构

Web站点性能监控的工具

2015-04-10 15:25 323 查看
一. 基础知识

1) TTFB基础

2) TTFB延迟诊断

3) onload-ondomcontentloaded

4) 浏览器并发Http请求数

二. 工具

1) 5 Tools to Speed Up Your Web Site

2) WebPageTest

3) Glimpse

4) ANTS Performance Profiler

5) Chorme 开发者工具系列文章

三. 性能提升方案

1) Asp.net站点性能提升方法

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

4)
后端动态合并js,css 文件实现 另一则

5) js, css文件Bundle

四. 使用CDN服务

1)
如何在页面引入CDN

2) 国内网站常用的一些 CDN 公共库加速服务

http://www.oschina.net/news/53128/public-cdn

http://www.freehao123.com/2014-cdn/

五. 配置子域名提供静态资源服务

如何配置static-cookieless-domain

在IIS上实践cookieless domain

http://www.dotnetexpertguide.com/2012/10/aspnet-mvc-4-cookieless-domain-for-bundling-and-static-resources.html

六. 其它

1) C#..Net, MVC tools
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: