#!/usr/local/bin/speedy
### CGIスクリプトをここに
##
## オプションで、いくつかの目的のために
## use the CGI::SpeedyCGI モジュールを使う
##
# SpeedyCGI オブジェクトの作成
use CGI::SpeedyCGI;
my $sp = CGI::SpeedyCGI->new;
# SpeedyCGIの下で実行されているかどうかを調べる
print "Running under speedy=", $sp->i_am_speedy ? 'y' : 'n', "\n";
# shutdownハンドラの設定
$sp->set_shutdown_handler(sub { do something here });
# いくつかのSpeedyCGIオプションの設定/取得
$sp->setopt('timeout', 30);
print "maxruns=", $sp->getopt('maxruns'), "\n";
SpeedyCGI CGI高速化チューニング(perl言語用) BIG-server.com
http://www.maido3.com/server/option/perlcgi.html