From: Marc Slemko Date: Sat, 1 Nov 1997 04:45:51 +0000 (+0000) Subject: Expand on nph- script section; use words "server push" and mention X-Git-Tag: APACHE_1_3b3~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76bd6be68b728fb8af40809cfc72dd108f13cb54;p=thirdparty%2Fapache%2Fhttpd.git Expand on nph- script section; use words "server push" and mention unbuffering in 1.3. PR: 1316 Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79491 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index 5699ca0257c..8217ae9051c 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -15,7 +15,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.91 $ ($Date: 1997/10/25 22:35:10 $) + $Revision: 1.92 $ ($Date: 1997/11/01 04:45:51 $)

The latest version of this FAQ is always available from the main @@ -168,7 +168,7 @@ reset by peer" in my error log?

  • How can I get my script's output without - Apache buffering it? + Apache buffering it? Why doesn't my server push work?
  • Why do I get complaints about redefinition of "struct iovec" when compiling under Linux? @@ -1253,14 +1253,14 @@
  • How can I get my script's output without Apache buffering - it? + it? Why doesn't my server push work?

    In order to improve network performance, Apache buffers script output into relatively large chunks. If you have a script that sends - information in bursts (such as partial-done messages in a multi-commit - database transaction, perhaps), the client will not necessarily get - the output as the script is generating it. + information in bursts (eg. as partial-done messages in a multi-commit + database transaction or any type of server push), the client will + not necessarily get the output as the script is generating it.

    To avoid this, Apache recognizes scripts whose names begin with @@ -1307,6 +1307,10 @@

    and then follow with your normal non-nph headers.

    +

    Note that in version 1.3, all CGI scripts will be unbuffered + so the only difference between nph scripts and normal scripts is + that nph scripts require the full HTTP headers to be sent. +