News Feed
Jobs Feed
Sections




News Archive
Ilia Alshanetsky's Blog:
PHP's Output Buffering
December 08, 2011 @ 10:01:15

In a new post to his blog Ilia Alshanetsky takes a look at PHP's output buffering feature and some interesting things he found when testing some recent code (hint: it has to do with PHP's "interesting" management of the buffer).

While profiling our application I came across a a rather strange memory usage by the ob_start() function. We do use ob_start() quite a bit to defer output of data, which is a common thing in many applications. What was unusual is that 16 calls to ob_start() up chewing through almost 700kb of memory, given that the data being buffered rarely exceeds 1-2kb, this was quite unusual.

Through a bit more testing he found that, if a buffer provided for content isn't enough, PHP automatically bumps it up by 10kb each time - a waste of resources if you only need a small subset of that. He includes a small patch he made to the PHP core API that allows for defining a custom buffer size and, if it's not enough, bumps up the buffer size by 1kb instead of 10kb.

0 comments voice your opinion now!
output buffer increase patch custom size


blog comments powered by Disqus

Similar Posts

Joshua Eichorn's Blog: Webthumb

HowTo Forge: How To Harden PHP5 With Suhosin (Debian Etch/Ubuntu)

WebCheatSheet.com: Secure File Upload with PHP

Mikko Koppanen's Blog: Creating a simple line graph

Community News: Namespaces in PHP6


Community Events











Don't see your event here?
Let us know!


tool zendframework2 language conference release code series podcast opinion introduction community development framework testing functional example unittest composer interview phpunit

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework