News Feed
Jobs Feed
Sections




News Archive
SitePoint PHP Blog:
Speed Up Your Website with PHP Buffer Flushing
October 29, 2010 @ 08:34:18

New from the SitePoint blog, there's an article from Craig Buckler about using buffer flushing to increase the load times of your applications and websites.

Output buffering makes this process quicker and more efficient. The buffer is essentially a big memory-resident string. When text is output, it's appended to the buffer rather than returned to the browser immediately. The buffer is then "flushed", i.e. its contents are transmitted and the string is reset pending further output.

He notes the instances where the buffer would be flushed - end of page, exceeds number of bytes allowed or a manual flush is called - and code snippet example of a simple flushing setup. He also asks for some feedback on this method, so be sure to look at the comments for more thoughts from the community.

1 comment voice your opinion now!
buffer flush output speed optimize


blog comments powered by Disqus

Similar Posts

NETTUTS.com: Create a PHP5 Framework - Part 3

Affinity Bridge Blog: Code optimization with Xdebug and KCachegrind

JSLabs Blog: Scaling PHP

ComputerWorld.com: Advanced PHP Solutions with Zeev Suraski (Webcast)

Sebastian Bergmann's Blog: The Cost of Test Isolation (and other PHPUnit Features)


Community Events











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


application community series development api podcast framework language database testing zendframework2 opinion code example phpunit functional introduction release composer interview

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