HTTP 压缩 - 哪种技术最适合安全性和性能?
我们在 IIS 7.0 中提供了 3 种 HTTP 压缩
- GZIP 编码
- DEFLATE 编码
- BZIP2 编码
这三者之间有什么区别? 哪种安全性和性能最佳的压缩?
We have 3 HTTP Compression available in IIS 7.0
- GZIP Encoding
- DEFLATE Encoding
- BZIP2 Encoding
What are the difference between these three? Which is the best compression for security and performance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
gzip 和 deflate 都使用 deflate 算法,但 gzip 在标头中添加了一些字节。 bzip2 提供更好的压缩,但速度慢得多。
安全性与之无关,因为压缩需要是可逆的。 如果安全是一个问题,最好的选择是使用 HTTPS。
gzip and deflate both use the deflate algorithm, but gzip adds a few bytes in headers. bzip2 gives better compression, but is much slower.
Security has nothing to do with it as the compression needs to be reversible. If security is an issue your best bet is to use HTTPS.
不存在“最佳”压缩。 所有算法都有不同的属性,例如压缩/解压缩速度、压缩/解压缩时的内存消耗或压缩比。 这完全取决于您的要求。 没有人可以告诉您什么最适合您(除非您告诉我们更多有关您的要求的信息)。
There is no “best” compression. All algorithms have different properties, such as compression/decompression speed, memory consumption while compressing/decompressing, or compression ratio. It all depends on your requirements. Nobody can tell you what is best for you (unless you tell us a lot more about your requirements).