设置HTTP persistent connection提高网站访问性能

经过紧张的开发过程,新的网站总算上线了。但是使用流量分析工具进行查看,发现性能非常不好。一个页面全部下载下来,比老版网站多了一倍的时间!

 

分析工具给出的解释是这样的:

HTTP Persisitent Connections appear to be disabled for the following hosts: xxx

This increases network overhead, causing delays in page loads, and greater stress on the servers.

 

通过查询,原来这是HTTP1.1的特性,可以配置是否重复使用一个TCP连接。

http://download.oracle.com/javase/1.5.0/docs/guide/net/http-keepalive.html

http://hi.baidu.com/wwtvanessa/blog/item/64f46b3830eb89cad46225fb.html

 

根据上面资料,查看网站的抓包结果,确实新网站每个回复的http header都会包含connection:close.

 

经过检查,原来是Apache配置错误造成的。修改httpd.conf如下:

KeepAlive On

经过修改,服务器访问性能就大大提高了。

你可能感兴趣的:(Connection)