对ashx请求用Gzip,Deflated压缩

时间:2022-12-16 20:00:03

//GZIP压缩

对ashx请求用Gzip,Deflated压缩
对ashx请求用Gzip,Deflated压缩// 查看请求头部
对ashx请求用Gzip,Deflated压缩
string  acceptEncoding  =  context.Request.Headers[ " Accept-Encoding " ].ToString().ToUpperInvariant();
对ashx请求用Gzip,Deflated压缩
if  ( ! String.IsNullOrEmpty(acceptEncoding))
对ashx请求用Gzip,Deflated压缩对ashx请求用Gzip,Deflated压缩
{
对ashx请求用Gzip,Deflated压缩    
//如果头部里有包含"GZIP”,"DEFLATE",表示你浏览器支持GZIP,DEFLATE压缩
对ashx请求用Gzip,Deflated压缩
    if (acceptEncoding.Contains("GZIP"))
对ashx请求用Gzip,Deflated压缩对ashx请求用Gzip,Deflated压缩    
{
对ashx请求用Gzip,Deflated压缩        
//向输出流头部添加压缩信息
对ashx请求用Gzip,Deflated压缩
        context.Response.AppendHeader("Content-encoding""gzip");
对ashx请求用Gzip,Deflated压缩        context.Response.Filter 
= new GZipStream(context.Response.Filter, CompressionMode.Compress);
对ashx请求用Gzip,Deflated压缩    }

对ashx请求用Gzip,Deflated压缩    
else if (acceptEncoding.Contains("DEFLATE"))
对ashx请求用Gzip,Deflated压缩对ashx请求用Gzip,Deflated压缩    
{
对ashx请求用Gzip,Deflated压缩        
//向输出流头部添加压缩信息
对ashx请求用Gzip,Deflated压缩
        context.Response.AppendHeader("Content-encoding""deflate");
对ashx请求用Gzip,Deflated压缩        context.Response.Filter 
= new DeflateStream(context.Response.Filter, CompressionMode.Compress);
对ashx请求用Gzip,Deflated压缩    }

对ashx请求用Gzip,Deflated压缩}
对ashx请求用Gzip,Deflated压缩

 

这样每次context.Response.Write出支的数据就压缩了

对效多的文本信息压缩可以压缩到原来三分之一到四分之一的样子

如果发送的信息只有几个字节就没有必要了

下面来看两次压缩的对比

对ashx请求用Gzip,Deflated压缩

上面这个是压缩前的

下面这个是压缩后的

对ashx请求用Gzip,Deflated压缩

来比较一下.

压缩前

第一个请求:3021字节,用时0.033

第二个请求: 431字节,用时0.010

第三个请求: 516字节,用时0.008

压缩后

第一个请求:1239字节,用时0.025

第二个请求: 556字节,用时0.008

第三个请求: 587字节,用时0.008

第一个请求压缩很明显,达到了原来的三分之一左右

第二个请求,第三个请求压缩前反而比压缩后小.这是为什么呢.

呵.那是第一个请求发送的数据本来就很大,

第二个和第三个请求发送的就只有几个字节,

还要加上浏览器的一些信息,可能反而大了吧

我的理解是这样的.还请高手多多指教

 

出处:http://www.cnblogs.com/liuju150/archive/2009/09/14/1566479.html