Apache:缓存 DEFLATE 文件

发布于 2024-07-07 12:19:40 字数 92 浏览 8 评论 0原文

让 zlib 在每个请求期间压缩网页似乎是多余的。 这也是我的文件响应时间的瓶颈。 有没有办法缓存 zlib 文件,以便每次修改时只压缩一次? 还是我应该继续许愿?

It seems redundant to have zlib compress a web page during every request. It is also the bottleneck of my files' response times. Is there a way to cache the zlib'd file so that it is compressed only once at each modification? Or should I just keep wishing?

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

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

发布评论

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

评论(2

攀登最高峰 2024-07-14 12:19:40

如果您想要一个快速而懒惰的解决方案,只需制作最常用文件的 gzip 副本,然后将

如果可能的话,您也可以考虑使用 Lighttpd 而不是 Apache。 它有一个 mod_compress 可以完全满足您的需求。

If you want a quick and lazy solution, just make gzipped copies of your most used files and turn MultiViews on for them. This still has CPU overhead to calculate the right file to send but it's less than a gzip every time. If you want to take it further you can create static type-map files.

Also you could consider using Lighttpd if possible instead of Apache. It has a mod_compress which does exactly what you want.

愁杀 2024-07-14 12:19:40

嗯,我认为 mod_cache 可以完成这项工作。 http://httpd.apache.org/docs/2.0/mod/mod_cache。 html

Hm, I think mod_cache will do the job. http://httpd.apache.org/docs/2.0/mod/mod_cache.html

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