web开发中可以通过gzip压缩页面来降低网站的流量,而gzip并不会对cpu造成大量的占用,只是几个百分点而已,但是对于页面却能压缩40%以上,非常划算。
resin服务器具体配置方法:
修改resin/conf/resin.conf文件,在<web-app>中添加以下配置代码:
<filter filter-name="gzip"
filter-class="com.caucho.filters.GzipFilter">
<init>
<use-vary>true</use-vary>
</init>
</filter>
<filter-mapping filter-name="gzip">
<url-pattern>
<exclude-pattern>*.pdf</exclude-pattern>
<include-pattern>/*</include-pattern>
</url-pattern>
</filter-mapping>
posted on 2008-10-22 10:09
分享爱的空间 阅读(2672)
评论(2) 编辑 收藏