HTTP 压缩 - 哪种技术最适合安全性和性能?

发布于 2024-07-26 23:54:28 字数 156 浏览 4 评论 0原文

我们在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

罗罗贝儿 2024-08-02 23:54:28

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.

瞎闹 2024-08-02 23:54:28

不存在“最佳”压缩。 所有算法都有不同的属性,例如压缩/解压缩速度、压缩/解压缩时的内存消耗或压缩比。 这完全取决于的要求。 没有人可以告诉您什么最适合(除非您告诉我们更多有关您的要求的信息)。

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文