1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 04:02:19 +02:00

Improve memory consumption on chunked output buffering

This commit is contained in:
Zeev Suraski
2001-03-04 15:46:13 +00:00
parent 39724f6e4a
commit a22ada795f
2 changed files with 10 additions and 4 deletions

View File

@@ -106,7 +106,11 @@ PHPAPI int php_start_ob_buffer(zval *output_handler, uint chunk_size)
if (OG(lock)) {
return FAILURE;
}
php_ob_init(40*1024, 10*1024, output_handler, chunk_size);
if (chunk_size) {
php_ob_init((chunk_size*3/2), chunk_size/2, output_handler, chunk_size);
} else {
php_ob_init(40*1024, 10*1024, output_handler, chunk_size);
}
OG(php_body_write) = php_b_body_write;
return SUCCESS;
}
@@ -301,7 +305,6 @@ static void php_ob_append(const char *text, uint text_length)
if (OG(active_ob_buffer).chunk_size
&& OG(active_ob_buffer).text_length >= OG(active_ob_buffer).chunk_size) {
zval *output_handler = OG(active_ob_buffer).output_handler;
uint chunk_size = OG(active_ob_buffer).chunk_size;
if (output_handler) {
output_handler->refcount++;

View File

@@ -106,7 +106,11 @@ PHPAPI int php_start_ob_buffer(zval *output_handler, uint chunk_size)
if (OG(lock)) {
return FAILURE;
}
php_ob_init(40*1024, 10*1024, output_handler, chunk_size);
if (chunk_size) {
php_ob_init((chunk_size*3/2), chunk_size/2, output_handler, chunk_size);
} else {
php_ob_init(40*1024, 10*1024, output_handler, chunk_size);
}
OG(php_body_write) = php_b_body_write;
return SUCCESS;
}
@@ -301,7 +305,6 @@ static void php_ob_append(const char *text, uint text_length)
if (OG(active_ob_buffer).chunk_size
&& OG(active_ob_buffer).text_length >= OG(active_ob_buffer).chunk_size) {
zval *output_handler = OG(active_ob_buffer).output_handler;
uint chunk_size = OG(active_ob_buffer).chunk_size;
if (output_handler) {
output_handler->refcount++;