CGI::Fast (3)
Leading comments
Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32) Standard preamble: ========================================================================
NAME
CGI::Fast - CGI Interface for Fast CGISYNOPSIS
use CGI::Fast socket_path => '9000', socket_perm => 0777, listen_queue => 50; use CGI qw/ :standard /; $COUNTER = 0; # optional, will default to STDOUT, STDIN, STDERR CGI::Fast->file_handles({ fcgi_input_file_handle => IO::Handle->new, fcgi_output_file_handle => IO::Handle->new, fcgi_error_file_handle => IO::Handle->new, }); while ($q = CGI::Fast->new) { process_request($q); }
DESCRIPTION
CGI::Fast is a subclass of theOTHER PIECES OF THE PUZZLE
In order to use CGI::Fast you'll need theWRITING FASTCGI PERL SCRIPTS
FastCGI scripts are persistent: one or more copies of the script are started up when the server initializes, and stay around until the server exits or they die a natural death. After performing whatever one-time initialization it needs, the script enters a loop waiting for incoming connections, processing the request, and waiting some more.A typical FastCGI script will look like this:
#!perl use CGI::Fast; do_some_initialization(); while ($q = CGI::Fast->new) { process_request($q); }
Each time there's a new request, CGI::Fast returns a
while (CGI::Fast->new) { process_request(); }
Calls to header(), start_form(), etc. will all operate on the current request.
INSTALLING FASTCGI SCRIPTS
See the FastCGI developer's kit documentation for full details. On the Apache server, the following line must be added to srm.conf:
AddType application/x-httpd-fcgi .fcgi
FastCGI scripts must end in the extension .fcgi. For each script you install, you must add something like the following to srm.conf:
FastCgiServer /usr/lib/cgi-bin/file_upload.fcgi -processes 2
This instructs Apache to launch two copies of file_upload.fcgi at startup time.
USING FASTCGI SCRIPTS AS CGI SCRIPTS
Any script that works correctly as a FastCGI script will also work correctly when installed as a vanillaEXTERNAL FASTCGI SERVER INVOCATION
FastCGI supports a
FastCgiExternalServer /usr/lib/cgi-bin/file_upload.fcgi -host sputnik:8888
Two environment variables affect how the "CGI::Fast" object is created, allowing "CGI::Fast" to be used as an external FastCGI server. (See "FCGI" documentation for "FCGI::OpenSocket" for more information.)
You can set these as
- FCGI_SOCKET_PATH /socket_path
-
The address (TCP/IP) or path (UNIXDomain) of the socket the external FastCGI script to which bind an listen for incoming connections from the web server.
- FCGI_SOCKET_PERM /socket_perm
-
Permissions for UNIXDomain socket.
- FCGI_LISTEN_QUEUE /listen_queue
- Maximum length of the queue of pending connections, defaults to 100.
For example:
use CGI::Fast socket_path => "sputnik:8888", listen_queue => "50" ; use CGI qw/ :standard /; do_some_initialization(); while ($q = CGI::Fast->new) { process_request($q); }
Or:
use CGI::Fast; use CGI qw/ :standard /; do_some_initialization(); $ENV{FCGI_SOCKET_PATH} = "sputnik:8888"; $ENV{FCGI_LISTEN_QUEUE} = 50; while ($q = CGI::Fast->new) { process_request($q); }
Note the importance of having use
use CGI::Fast qw/ :standard /
FILE HANDLES
CGI::Fast->file_handles({ fcgi_input_file_handle => IO::Handle->new, fcgi_output_file_handle => IO::Handle->new, fcgi_error_file_handle => IO::Handle->new, }); while (CGI::Fast->new) { .. }
CAVEATS
I haven't tested this very much.LICENSE
Copyright 1996-1998, Lincoln D. Stein. All rights reserved. Currently maintained by Lee JohnsonThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Address bug reports and comments to:
github.com/leejo/cgi-fast