zend

speeding up project using zend optimizer+

obviously you are using the zend framework for your application. zend also offers a free application stack including the zend framework, called 'zend server community edition'. the zend server includes a number of useful tools, one of them is the zend optimizer+.
the zend optimizer+ can be used to increase the overall performance of your application without any application changes. this does of course not directly address your performance problemes because of you database access, but it may make the performance issues acceptable because of the improved overall performance. using the optimizer and zend_cache as described in the other solution may be a viable way to solve your problem.

http://www.zend.com/en/products/server-ce/

Taggings:

Speeding up project using Zend_Db

<p>An existing project realized with the Zend Framework should be optimized in terms of performance. The use of Zend_Db slows down the database access because of its automatic table-scanning and overhead. The SQL-queries as well as the table structures are already optimized and should not be changed. The configuration on the server environment:</p><ul><li>PHP 5.2.6</li><li>MySQL Server Version: 5.0.75</li><li>Zend Framework 1.5</li><li>Apache 2.6.28-16</li><li>Suhosin-Patch 0.9.6.2</li></ul><p>The update to a newer version of Zend Framework is right now not possible because of some migration problems. The changes in the code should be measurable and viewable with XDEBUG/kcachegrind.</p>
Subscribe to zend