News Feed
Jobs Feed
Sections




News Archive
Matt Knight's Blog:
Optimising Zend_Config
July 06, 2011 @ 10:39:01

Matt Knight has a recent post looking at a specific part of the Zend Framework, the Zend_Config component, and how it's overhead can be reduced (and somewhat replaced) using a few lines of PHP 5.3-specific code.

One such limitation that I've recently seen is the performance of Zend_Config. This class underpins the mechanism by which developers provide configuration to the application, and all this config is passed around in the form of Zend_Config objects. [...] For the purposes of this article, I'm referring specifically to config INI files, using Zend_Config_Ini to parse. This is a very common format for Zend applications to use - it is familiar to developers and infrastructure support teams - and is the case where the performance issues become apparent

He talks about parsing ini files and the complications that can come with the Zend Framework method of parsing them - conversion to objects via a recursive method, merging data from different sections and the overhead toArray can cause. He shows an alternative that uses array_replace_recursive to handle the parsing and a class version that offers backwards compatibility with the Zend_Config structure. He claims to have seen a sixty percent jump in performance using these methods over the Zend Framework's defaults.

1 comment voice your opinion now!
zendframework zendconfig optimize performance arrayreplacerecursive


blog comments powered by Disqus

Similar Posts

Doug Brown's Blog: Zend_Cache is Saving me Money!

Rob Allen's Blog: Simple Zend_Form File Upload Example

Padraic Brady's Blog: Zend Framework: Surviving The Deep End Book - Chapters 8 and 9 Published

Brandon Savage's Blog: Hitting the Database Less: Quick and Dirty Strategies for Database Efficiency

PHPMaster.com: Generating Invoices with Zend_Pdf


Community Events











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


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

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