Ruby Forum NGINX > output_buffers and postpone_output

Posted by Dave Cheney (Guest)
on 06.05.2008 04:03
(Received via mailing list)
Hi,

Output buffers and postpone_output have disappeared from the wiki
(were they ever there), are they still supported?

Cheers

Dave
Posted by Igor Sysoev (Guest)
on 06.05.2008 08:33
(Received via mailing list)
On Tue, May 06, 2008 at 11:52:21AM +1000, Dave Cheney wrote:

> Output buffers and postpone_output have disappeared from the wiki  
> (were they ever there), are they still supported?

Yes, they are supported.
Posted by Dave Cheney (Guest)
on 06.05.2008 08:53
(Received via mailing list)
Can you please give me a short rundown of the syntax options and I'll
update the wiki.

Cheers

Dave
Posted by Igor Sysoev (Guest)
on 07.05.2008 22:11
(Received via mailing list)
On Tue, May 06, 2008 at 04:41:24PM +1000, Dave Cheney wrote:

> Can you please give me a short rundown of the syntax options and I'll  
> update the wiki.

  output_buffers  1 32k;  # default

are used to read file if sendfile is disabled or if file content should
be processed - SSI, substitution, charset recoding, gzipping.

  postpone_output  1460;  # default

is used to buffer data to send many small parts in one ethernet packet.
Due to this directive HTTP response header is usually in the same packet
as first response part.