Perl 和 mod_fcgid-我如何确定它正在工作?
我有几个 Perl 脚本即将公开,我想确保它们在 mod_fcgid
下运行,以保持服务器负载尽可能低。 以前,我只运行过测试 FastCGI 的脚本(即 while ( my $q = new CGI::Fast ) { $count++; echo $count;})
或利用更大的 Perl只要您设置了 Apache 和 FCGI,软件包(例如 MovableType)就可以作为 FCGI 运行。 正确FastCGI/mod_fcgid
并将文件后缀更改为“.fcgi
”。
所以,这是我的问题:除了更改脚本的文件后缀之外,我还需要做任何事情吗?如果需要,该怎么办?
I have a couple Perl scripts I'm taking public soon, and I want to make sure they'll run under mod_fcgid
in order to keep the server load as low as possible. Previously, I've only ever run scripts that test FastCGI (ie, while ( my $q = new CGI::Fast ) { $count++; echo $count;})
or taken advantage of larger Perl packages (like MovableType) that claim to run as FCGI as long as you set up Apache & FastCGI/mod_fcgid
properly and change the file suffix to ".fcgi
".
So, here's my question: do I need to do anything besides change the file suffix of my scripts, and if so, what?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要安装 FastCGI 并配置 Apache 才能使用它,但我假设您知道这一点。 要测试您的代码是否确实在 FCGI 而不是常规 CGI 下运行,您可以使用 FCGI 请求对象,CGI::Fast 在后台使用它。
You'll need to install FastCGI and configure your Apache to use it, but I assume you knew that. To test if your code is in fact running under FCGI instead of regular CGI, you can use the
IsFastCGI
method from the FCGI request object, which CGI::Fast uses under the hood.