Web 服务器或应用程序服务器中的 gzip 压缩?
我在 J2EE 环境中使用 Weblogic 应用程序服务器和 Apache Web 服务器,并计划实现响应的 gzip 压缩。
不确定是在 Apache 服务器上还是在 weblogic 上实现压缩。
I'm using Weblogic application server and Apache web server in my J2EE environment and planning to implement gzip compression of response.
Not sure, whether to implement compression on the Apache server or on the weblogic.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除非您有充分的理由不这样做,否则您希望将压缩负载放在 Web 服务器上,因为应用程序服务器已经忙于执行其他操作。要将
mod_weblogic
与mod_deflate
一起使用,请查看 这篇文章。Unless you have a very good reason to not do so, you want to put the load of compression on the web servers since the app servers are already busy at doing other things. To use
mod_weblogic
together withmod_deflate
, have a look at this post.取决于您希望标头由 apache 还是由应用服务器处理。您需要设置编码类型和内容长度标头才能对 http 使用 gzip 压缩。 Apache 可能更有可能针对它进行优化。
Depends whether you want the headers to be handled by apache or by the app server. You need to set the encoding type and content length headers to use gzip compression for http. Apache may be more potentially optimised for it.