Perl 和 mod_fcgid-我如何确定它正在工作?

发布于 2024-07-07 10:36:11 字数 357 浏览 15 评论 0原文

我有几个 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 技术交流群。

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

发布评论

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

评论(1

贩梦商人 2024-07-14 10:36:11

您需要安装 FastCGI 并配置 Apache 才能使用它,但我假设您知道这一点。 要测试您的代码是否确实在 FCGI 而不是常规 CGI 下运行,您可以使用 FCGI 请求对象,CGI::Fast 在后台使用它。

use FCGI;

my $request = FCGI::Request();
if ( $request->IsFastCGI ) { 
    print "we're running under FastCGI!";
} else { 
    print "plain old boring CGI";
}

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.

use FCGI;

my $request = FCGI::Request();
if ( $request->IsFastCGI ) { 
    print "we're running under FastCGI!";
} else { 
    print "plain old boring CGI";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文