From: brian Date: Wed, 24 Jun 1998 07:18:48 +0000 (+0000) Subject: Fix perl variable mention (d'oh!), slightly improve english usage. X-Git-Tag: 1.3.1~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f6a39ffb9c68383376b3cbceccabef48fad0330b;p=apache Fix perl variable mention (d'oh!), slightly improve english usage. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@81603 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index 77df77e0ea..ba1b4d2362 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -14,7 +14,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.120 $ ($Date: 1998/06/07 01:33:52 $) + $Revision: 1.121 $ ($Date: 1998/06/24 07:18:48 $)

The latest version of this FAQ is always available from the main @@ -1244,9 +1244,9 @@ As of Apache 1.3, CGI scripts are essentially not buffered. Every time your script does a "flush" to output data, that data gets relayed on to the client. Some scripting languages, for example Perl, have their own - buffering for output - this can be disabled by setting the $! + buffering for output - this can be disabled by setting the $| special variable to 1. Of course this does increase the overall number - of packets being transmitted, which can result in a sense of slowness by + of packets being transmitted, which can result in a sense of slowness for the end user.

Prior to 1.3, you needed to use "nph-" scripts to accomplish non-buffering.