Apache Httpd 在 Tomcat 前面以实现更快的 SSL 处理?

发布于 2024-12-07 13:03:59 字数 71 浏览 0 评论 0原文

将 Apache httpd 放在 Tomcat 前面是否可以加快 SSL 处理速度?使用两台服务器时总体吞吐量是上升还是下降?

Does placing Apache httpd in front of Tomcat facilitate faster SSL processing? Does the overall throughput go up or down when using both servers?

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

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

发布评论

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

评论(1

青春有你 2024-12-14 13:03:59

将 Apache 安装到另一台机器上也会增加延迟(请求必须经过一台机器)和吞吐量(您有更多的 cpu)。 Apache JServ 协议 (AJP) (维基百科上的 AJP)对于将 Apache 链接到 Tomcat 并减少增加的延迟非常有用:

AJP13协议是面向数据包的。二进制格式大概是
出于性能方面的考虑,选择了更具可读性的纯文本。
Web 服务器通过 TCP 与 servlet 容器通信
连接。为了减少昂贵的套接字创建过程,
Web 服务器将尝试维持持久的 TCP 连接
servlet 容器,并为多个重用一个连接
请求/响应周期。

(如果你将它们安装在同一台机器上......说实话,我从来没有这样做过,但我不认为它们的 SSL 性能有很大差异。无论如何,如果它很重要,你应该测量它。Don不要错过Tomcat Wiki 中的常见问题解答。)

Installing Apache to an other machine will increase the latency (the request has to go through one more machine) and the throughput (you have more cpu) too. Apache JServ Protocol (AJP) (AJP on Wikipedia) is useful to link the Apache to the Tomcat and to reduce the increased latency:

The AJP13 protocol is packet-oriented. A binary format was presumably
chosen over the more readable plain text for reasons of performance.
The web server communicates with the servlet container over TCP
connections. To cut down on the expensive process of socket creation,
the web server will attempt to maintain persistent TCP connections to
the servlet container, and to reuse a connection for multiple
request/response cycles.

(If you install them on the same machine... to be honest, I've never do that but I wouldn't think that there is a big difference in their SSL performance. Anyway, if it's important you should measure it. Don't miss the FAQ in the Tomcat Wiki.)

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