多线程 FastCGI java 库

发布于 2024-12-11 10:31:58 字数 64 浏览 0 评论 0原文

在哪里可以获得 Java 多线程 FastCGI 库? 以及我应该如何配置 nginx,使其支持处理多个并发请求。

Where i can get multi threaded FastCGI libraries for Java?
And how I should configure nginx, that it supported the processing of multiple concurrent requests.

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

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

发布评论

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

评论(2

ら栖息 2024-12-18 10:31:58

除非您有非常特殊的用例,否则您不需要多线程 FastCGI 库。您可以使用 fcgistarter(带有 -N 标志)和 Apache mod_proxy 负载平衡器在多个 FastCGI 服务器上分配负载。

这是我的一个答案,解释了如何使用 Java/Apache 构建 FastCGI 应用程序: https://stackoverflow.com/a/15033764/309483

Unless you have a very special use-case, you shouldn't need multi-threaded FastCGI libraries. You can use fcgistarter (with the -N flag) and the Apache mod_proxy load balancers to distribute load over multiple FastCGI servers.

Here's an answer I made that explains how to build FastCGI apps with Java/Apache: https://stackoverflow.com/a/15033764/309483

秋千易 2024-12-18 10:31:58

您不将 FastCGI 与 java 一起使用; Java 系统通常有自己的 Web 服务器,您只需将主(前端)Web 服务器的请求代理到它们即可。

You don't use FastCGI with java; Java systems usually have their own web server and you just proxy requests to them from the primary (front-end) web server.

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