多线程 FastCGI java 库
在哪里可以获得 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除非您有非常特殊的用例,否则您不需要多线程 FastCGI 库。您可以使用
fcgistarter
(带有-N
标志)和 Apachemod_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 Apachemod_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
您不将 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.