Re: mid-course errors
Bob Denny (rdenny@dc3.com)
Mon, 14 Apr 1997 07:11:21 -0700
OK, don't laugh... For CGI, WebSite spools the output by default (you can
disable it) into a file which is implemented as a privately backed block of
expandable virtual memory. This has a few advantages and the obvious CPU/disk
hit and reduction of capacity. The advantages are (1) you can rewind the
output stream and send a non-200 response at any time, and (2) Keep-Alive is
retained without chunking because you can get the content-length. The latter
"advantage" will fade with time, of course.
-- Bob
On Apr 14, Dave Kristol wrote:
> Subject: mid-course errors
> Here's something that has puzzled me about HTTP server
> implementations. What happens if the server encounters an error after
> it sends, say, a "200 OK" response and part of the entity body?