summaryrefslogtreecommitdiff
path: root/php.ini-recommended
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-08-20 20:09:57 +0000
committerMarcus Boerger <helly@php.net>2002-08-20 20:09:57 +0000
commitcbe9f80d449627d3690b02459417da8bd4b68a36 (patch)
treecfd5b4b9cdfdea6ba561ed8196264300ccf059c0 /php.ini-recommended
parent0f8681fc69275ef7c0ec0db6466af9cf2c3c2a32 (diff)
downloadphp-git-cbe9f80d449627d3690b02459417da8bd4b68a36.tar.gz
note about double_buffering
Diffstat (limited to 'php.ini-recommended')
-rw-r--r--php.ini-recommended8
1 files changed, 8 insertions, 0 deletions
diff --git a/php.ini-recommended b/php.ini-recommended
index c157e039b6..54d595ee21 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -113,6 +113,14 @@ output_buffering = 4096
; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
;output_handler =
+; Normally you won't use an additional first output buffer when using any
+; special output handler but you can enforce this since it can help to reduce
+; memory used by output buffering when huge output chungs and total server
+; troughput are preferred. This value can either be set On in which case the
+; additional buffer is four times the size of all other output buffers or any
+; greater size.
+;double_buffering = Off
+
; Transparent output compression using the zlib library
; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)