📄 fast.pm
字号:
package CGI::Fast;# See the bottom of this file for the POD documentation. Search for the# string '=head'.# You can run this file through either pod2man or pod2html to produce pretty# documentation in manual or html file format (these utilities are part of the# Perl 5 distribution).# Copyright 1995,1996, Lincoln D. Stein. All rights reserved.# It may be used and modified freely, but I do request that this copyright# notice remain attached to the file. You may modify this module as you # wish, but if you redistribute a modified version, please attach a note# listing the modifications you have made.# The most recent version and complete docs are available at:# http://www.genome.wi.mit.edu/ftp/pub/software/WWW/cgi_docs.html# ftp://ftp-genome.wi.mit.edu/pub/software/WWW/$CGI::Fast::VERSION='1.02';use CGI;use FCGI;@ISA = ('CGI');# workaround for known bug in libfcgiwhile (($ignore) = each %ENV) { }# override the initialization behavior so that# state is NOT maintained between invocations sub save_request { # no-op}# New is slightly different in that it calls FCGI's# accept() method.sub new { my ($self, $initializer, @param) = @_; unless (defined $initializer) { return undef unless FCGI::accept() >= 0; } return $CGI::Q = $self->SUPER::new($initializer, @param);}1;=head1 NAMECGI::Fast - CGI Interface for Fast CGI=head1 SYNOPSIS use CGI::Fast qw(:standard); $COUNTER = 0; while (new CGI::Fast) { print header; print start_html("Fast CGI Rocks"); print h1("Fast CGI Rocks"), "Invocation number ",b($COUNTER++), " PID ",b($$),".", hr; print end_html; }=head1 DESCRIPTIONCGI::Fast is a subclass of the CGI object created byCGI.pm. It is specialized to work well with the Open MarketFastCGI standard, which greatly speeds up CGI scripts byturning them into persistently running server processes. Scriptsthat perform time-consuming initialization processes, such asloading large modules or opening persistent database connections,will see large performance improvements.=head1 OTHER PIECES OF THE PUZZLEIn order to use CGI::Fast you'll need a FastCGI-enabled Webserver. Open Market's server is FastCGI-savvy. There are alsofreely redistributable FastCGI modules for NCSA httpd 1.5 and Apache.FastCGI-enabling modules for Microsoft Internet Information Server andNetscape Communications Server have been announced.In addition, you'll need a version of the Perl interpreter that hasbeen linked with the FastCGI I/O library. Precompiled binaries areavailable for several platforms, including DEC Alpha, HP-UX and SPARC/Solaris, or you can rebuild Perl from source with patchesprovided in the FastCGI developer's kit. The FastCGI Perl interpretercan be used in place of your normal Perl without ill consequences.You can find FastCGI modules for Apache and NCSA httpd, precompiledPerl interpreters, and the FastCGI developer's kit all at URL: http://www.fastcgi.com/=head1 WRITING FASTCGI PERL SCRIPTSFastCGI scripts are persistent: one or more copies of the script are started up when the server initializes, and stay around untilthe server exits or they die a natural death. After performingwhatever one-time initialization it needs, the script enters a loop waiting for incoming connections, processing the request, andwaiting some more.A typical FastCGI script will look like this: #!/usr/local/bin/perl # must be a FastCGI version of perl! use CGI::Fast; &do_some_initialization(); while ($q = new CGI::Fast) { &process_request($q); }Each time there's a new request, CGI::Fast returns aCGI object to your loop. The rest of the time your scriptwaits in the call to new(). When the server requests thatyour script be terminated, new() will return undef. You canof course exit earlier if you choose. A new version of thescript will be respawned to take its place (this may benecessary in order to avoid Perl memory leaks in long-runningscripts).CGI.pm's default CGI object mode also works. Just modify the loopthis way: while (new CGI::Fast) { &process_request; }Calls to header(), start_form(), etc. will all operate on thecurrent request.=head1 INSTALLING FASTCGI SCRIPTSSee the FastCGI developer's kit documentation for full details. Onthe Apache server, the following line must be added to srm.conf: AddType application/x-httpd-fcgi .fcgiFastCGI scripts must end in the extension .fcgi. For each script youinstall, you must add something like the following to srm.conf: AppClass /usr/etc/httpd/fcgi-bin/file_upload.fcgi -processes 2This instructs Apache to launch two copies of file_upload.fcgi at startup time.=head1 USING FASTCGI SCRIPTS AS CGI SCRIPTSAny script that works correctly as a FastCGI script will also workcorrectly when installed as a vanilla CGI script. However it willnot see any performance benefit.=head1 CAVEATSI haven't tested this very much.=head1 AUTHOR INFORMATIONCopyright 1996-1998, Lincoln D. Stein. All rights reserved. This library is free software; you can redistribute it and/or modifyit under the same terms as Perl itself.Address bug reports and comments to: lstein@cshl.org=head1 BUGSThis section intentionally left blank.=head1 SEE ALSOL<CGI::Carp>, L<CGI>=cut
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -