什么是默认的fiddler gzip配置?

时间:2014-05-09 09:27:03

标签: tomcat gzip fiddler

我通过以下设置为我的tomcat启用gzip压缩:

compressableMimeType="text/html, text/xml, text/css, text/plain, application/json, application/javascript, application/x-javascript, application/xml"

但我无法获得与使用Fiddler的Transformer时一样低的页面大小:Tomcat的输出为2.3MB,而Fiddler的输出为2.0MB。

什么是Fiddler's默认的gzip配置?

提前谢谢!

1 个答案:

答案 0 :(得分:1)

默认情况下,Fiddler使用Xceed Streaming Compression库进行压缩;默认压缩级别为“最高”,可能等同于其他GZIP实现中的“9”设置。

http://doc.xceedsoft.com/products/XceedWfWorkflow/Xceed.Compression.Formats~Xceed.Compression.Formats.GZipCompressedStream~_ctor(Stream).html

请注意,使用ZopFli可以获得更高的压缩率。