在 IIS7 中启用动态压缩是否值得?

发布于 2024-07-18 14:18:25 字数 127 浏览 5 评论 0原文

我正在尝试寻找所有可能的方法来提高我的网站性能。 我正在考虑在服务器级别启用动态压缩,但担心性能下降(没有缓存压缩页面 - 文件损坏 - 服务器上的开销)。 我应该放弃 IIS 7 的动态压缩吗? 有没有比内置压缩模块做得更好的模块?

I am trying to find all possible ways I could improve my website performance. I was considering enabling dynamic compression at the server level but was concerned by performance hits (no caching of compressed pages - corruption of files - overhead on the server).
Should I just give up on the dynamic compression with IIS 7? are there modules out there that do a better job than the built-in compression module?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

两人的回忆 2024-07-25 14:18:25

您几乎应该始终启用动态压缩(默认情况下启用静态压缩)。 动态压缩==过度的处理压力是一个有害的神话。 这是 MSDN

尽管有一个常见的神话,但动态
压缩通常没有
CPU 开销过高。 实际上,
动态压缩通常会导致较少的
超过 CPU 总量的 5%
在繁忙的服务器上的利用率。 动态的
可以稍微部署压缩
自由地允许最大
为任何应用程序节省带宽
工作负载。

此外,您还可以在 IIS7 中指定压缩的 CPU 限制。

You should almost always enable dynamic compression (static is on by default). Dynamic compression == undue processing stress is a pernicious myth. Here's MSDN:

Despite a common myth, dynamic
compression usually does not have a
prohibitive CPU overhead. In fact,
dynamic compression often causes less
than 5 percent of the total CPU
utilization on a busy server. Dynamic
compression can be deployed somewhat
liberally to allow for maximum
bandwidth savings for any application
workloads.

Also, you can specify a CPU throttle for compression in IIS7.

赤濁 2024-07-25 14:18:25

您绝对应该启用动态压缩。 请参阅这篇关于 IIS 7 中十大性能改进的文章

引用自文章:

压缩带来的带宽减少

毫不奇怪,带宽成本是运行面向互联网的数据中心的最大成本之一。 此外,传送请求内容所需的带宽是影响应用程序响应能力的关键因素。

减少传送应用程序响应所需带宽的最有效方法之一是使用 HTTP 压缩。 这可以大大减少响应的大小,当应用于易于压缩的文本内容(例如 HTML)时,通常减少 10 倍。 最好的部分是,几乎所有桌面浏览器都支持它,并且与发送较少数据所节省的延迟相比,桌面硬件上的解压缩成本很小。 由于压缩基于 HTTP 1.1 协议中定义的内容编码协商,因此对于不支持压缩的客户端来说是安全的 - 这些客户端只需接收内容的未压缩版本。

You should absolutely enable dynamic compression. See this article on the top 10 Performance improvements in IIS 7.

Quoting from the article:

Bandwidth Reduction from Compression

It comes as no surprise that bandwidth costs are one of the top costs of running an Internet-facing datacenter. In addition, the bandwidth required to deliver requested content is a key factor in the perceived responsiveness of your application.

One of the most effective ways to reduce the bandwidth needed to deliver the application responses is to use HTTP compression. This can reduce the size of the response by a substantial amount, often by a factor of 10 when applied to easily compressible text content such as HTML. The best part is that virtually all desktop browsers support it, and decompression costs on desktop hardware are minor compared to the latency savings from sending less data. And since compression is based on Content-Encoding negotiation defined in the HTTP 1.1 protocol, enabling it is safe for clients that do not support compression—these clients simply receive an uncompressed version of the content.

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