home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _48c8c714c5ceaab0ca0fa6d7ce5708c1 < prev    next >
Text File  |  2000-03-23  |  7KB  |  171 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>CGI::Fast - CGI Interface for Fast CGI</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> CGI::Fast - CGI Interface for Fast CGI</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#other pieces of the puzzle">OTHER PIECES OF THE PUZZLE</A></LI>
  26.     <LI><A HREF="#writing fastcgi perl scripts">WRITING FASTCGI PERL SCRIPTS</A></LI>
  27.     <LI><A HREF="#installing fastcgi scripts">INSTALLING FASTCGI SCRIPTS</A></LI>
  28.     <LI><A HREF="#using fastcgi scripts as cgi scripts">USING FASTCGI SCRIPTS AS CGI SCRIPTS</A></LI>
  29.     <LI><A HREF="#caveats">CAVEATS</A></LI>
  30.     <LI><A HREF="#author information">AUTHOR INFORMATION</A></LI>
  31.     <LI><A HREF="#bugs">BUGS</A></LI>
  32.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  33. </UL>
  34. <!-- INDEX END -->
  35.  
  36. <HR>
  37. <P>
  38. <H1><A NAME="name">NAME</A></H1>
  39. <P>CGI::Fast - CGI Interface for Fast CGI</P>
  40. <P>
  41. <HR>
  42. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  43. <UL>
  44. <LI>Linux</LI>
  45. <LI>Solaris</LI>
  46. <LI>Windows</LI>
  47. </UL>
  48. <HR>
  49. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  50. <PRE>
  51.     use CGI::Fast qw(:standard);
  52.     $COUNTER = 0;
  53.     while (new CGI::Fast) {
  54.         print header;
  55.         print start_html("Fast CGI Rocks");
  56.         print
  57.             h1("Fast CGI Rocks"),
  58.             "Invocation number ",b($COUNTER++),
  59.             " PID ",b($$),".",
  60.             hr;
  61.         print end_html;
  62.     }</PRE>
  63. <P>
  64. <HR>
  65. <H1><A NAME="description">DESCRIPTION</A></H1>
  66. <P>CGI::Fast is a subclass of the CGI object created by
  67. CGI.pm.  It is specialized to work well with the Open Market
  68. FastCGI standard, which greatly speeds up CGI scripts by
  69. turning them into persistently running server processes.  Scripts
  70. that perform time-consuming initialization processes, such as
  71. loading large modules or opening persistent database connections,
  72. will see large performance improvements.</P>
  73. <P>
  74. <HR>
  75. <H1><A NAME="other pieces of the puzzle">OTHER PIECES OF THE PUZZLE</A></H1>
  76. <P>In order to use CGI::Fast you'll need a FastCGI-enabled Web
  77. server.  Open Market's server is FastCGI-savvy.  There are also
  78. freely redistributable FastCGI modules for NCSA httpd 1.5 and Apache.
  79. FastCGI-enabling modules for Microsoft Internet Information Server and
  80. Netscape Communications Server have been announced.</P>
  81. <P>In addition, you'll need a version of the Perl interpreter that has
  82. been linked with the FastCGI I/O library.  Precompiled binaries are
  83. available for several platforms, including DEC Alpha, HP-UX and 
  84. SPARC/Solaris, or you can rebuild Perl from source with patches
  85. provided in the FastCGI developer's kit.  The FastCGI Perl interpreter
  86. can be used in place of your normal Perl without ill consequences.</P>
  87. <P>You can find FastCGI modules for Apache and NCSA httpd, precompiled
  88. Perl interpreters, and the FastCGI developer's kit all at URL:</P>
  89. <PRE>
  90.   <A HREF="http://www.fastcgi.com/">http://www.fastcgi.com/</A></PRE>
  91. <P>
  92. <HR>
  93. <H1><A NAME="writing fastcgi perl scripts">WRITING FASTCGI PERL SCRIPTS</A></H1>
  94. <P>FastCGI scripts are persistent: one or more copies of the script 
  95. are started up when the server initializes, and stay around until
  96. the server exits or they die a natural death.  After performing
  97. whatever one-time initialization it needs, the script enters a 
  98. loop waiting for incoming connections, processing the request, and
  99. waiting some more.</P>
  100. <P>A typical FastCGI script will look like this:</P>
  101. <PRE>
  102.     #!/usr/local/bin/perl    # must be a FastCGI version of perl!
  103.     use CGI::Fast;
  104.     &do_some_initialization();
  105.     while ($q = new CGI::Fast) {
  106.         &process_request($q);
  107.     }</PRE>
  108. <P>Each time there's a new request, CGI::Fast returns a
  109. CGI object to your loop.  The rest of the time your script
  110. waits in the call to new().  When the server requests that
  111. your script be terminated, <CODE>new()</CODE> will return undef.  You can
  112. of course exit earlier if you choose.  A new version of the
  113. script will be respawned to take its place (this may be
  114. necessary in order to avoid Perl memory leaks in long-running
  115. scripts).</P>
  116. <P>CGI.pm's default CGI object mode also works.  Just modify the loop
  117. this way:</P>
  118. <PRE>
  119.     while (new CGI::Fast) {
  120.         &process_request;
  121.     }</PRE>
  122. <P>Calls to header(), start_form(), etc. will all operate on the
  123. current request.</P>
  124. <P>
  125. <HR>
  126. <H1><A NAME="installing fastcgi scripts">INSTALLING FASTCGI SCRIPTS</A></H1>
  127. <P>See the FastCGI developer's kit documentation for full details.  On
  128. the Apache server, the following line must be added to srm.conf:</P>
  129. <PRE>
  130.     AddType application/x-httpd-fcgi .fcgi</PRE>
  131. <P>FastCGI scripts must end in the extension .fcgi.  For each script you
  132. install, you must add something like the following to srm.conf:</P>
  133. <PRE>
  134.    AppClass /usr/etc/httpd/fcgi-bin/file_upload.fcgi -processes 2</PRE>
  135. <P>This instructs Apache to launch two copies of file_upload.fcgi at 
  136. startup time.</P>
  137. <P>
  138. <HR>
  139. <H1><A NAME="using fastcgi scripts as cgi scripts">USING FASTCGI SCRIPTS AS CGI SCRIPTS</A></H1>
  140. <P>Any script that works correctly as a FastCGI script will also work
  141. correctly when installed as a vanilla CGI script.  However it will
  142. not see any performance benefit.</P>
  143. <P>
  144. <HR>
  145. <H1><A NAME="caveats">CAVEATS</A></H1>
  146. <P>I haven't tested this very much.</P>
  147. <P>
  148. <HR>
  149. <H1><A NAME="author information">AUTHOR INFORMATION</A></H1>
  150. <P>Copyright 1996-1998, Lincoln D. Stein.  All rights reserved.</P>
  151. <P>This library is free software; you can redistribute it and/or modify
  152. it under the same terms as Perl itself.</P>
  153. <P>Address bug reports and comments to: <A HREF="mailto:lstein@cshl.org">lstein@cshl.org</A></P>
  154. <P>
  155. <HR>
  156. <H1><A NAME="bugs">BUGS</A></H1>
  157. <P>This section intentionally left blank.</P>
  158. <P>
  159. <HR>
  160. <H1><A NAME="see also">SEE ALSO</A></H1>
  161. <P><A HREF="../../lib/CGI/Carp.html">the CGI::Carp manpage</A>, <A HREF="../../lib/CGI.html">the CGI manpage</A></P>
  162. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  163. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  164. <STRONG><P CLASS=block> CGI::Fast - CGI Interface for Fast CGI</P></STRONG>
  165. </TD></TR>
  166. </TABLE>
  167.  
  168. </BODY>
  169.  
  170. </HTML>
  171.