           SPELL=speedy-cgi
         VERSION=2.22
          SOURCE=CGI-SpeedyCGI-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/CGI-SpeedyCGI-$VERSION
   SOURCE_URL[0]=$PERL_CPAN_URL/authors/id/H/HO/HORROCKS/$SOURCE
     SOURCE_HASH=sha512:00362fe462813f30257ea74e58dd2e75857e4c4ab78227c2ccc49c07c7692032dbe32f9f6f83565ec88bc42a94527c6b50d603c206261f1edef23f196aa73be9
         LICENSE=ART
        WEB_SITE="http://search.cpan.org/search?module=CGI::SpeedyCGI"
         ENTERED=20060519
        KEYWORDS="perl"
           SHORT="Speed up perl scripts by running them persistently."
cat << EOF
SpeedyCGI is a way to run perl scripts persistently, which can make them run much
more quickly. A script can be made to to run persistently by changing the
interpreter line at the top of the script from:
    #!/usr/bin/perl
to
    #!/usr/bin/speedy
After the script is initially run, instead of exiting, the perl interpreter is
kept running. During subsequent runs, this interpreter is used to handle new
executions instead of starting a new perl interpreter each time. A very fast
frontend program, written in C, is executed for each request. This fast frontend
then contacts the persistent Perl process, which is usually already running, to 
do the work and return the results.
EOF
