vote up 3 vote down star
5

Hi guys, I'm working on a community based website using zend framework - but its so slow it takes a while for pages to load. I would like to know what aspects of the zend framework should I look into to ensure it runs much faster.

Any tips and help would be greatly appreciated :)


Nice advice - I took upon the database and indexed it from scratch - there werent any indexes to start with :\ but anyway the speed has improved a bit but its still rather slow. Is there anything else that I must be keeping an eye on right here?

Because I'm just assuming its something to do with the framework as when I first ran basic tutorial projects made using the framework - they were a bit slow as well.


Nice tips - had a look at the zend performance guide article. I'm not so sure where to put the code for caching table metadata though :( [sorry for sounding like such a noob here] as mentioned at this link

flag

66% accept rate
1  
maybe it's not zend framework that slows your page down? – tharkun May 25 at 10:55
How can I be sure of that I mean I need to make my website run fast. I'm not using autoload here and instead included a file with a long list of requires in them – Ali May 26 at 6:09
what operating system are you running this on? – Jon Benedicto May 26 at 15:32

12 Answers

vote up 5 vote down check

If you can be on the same LAN as the server (at least for testing), then you can verify your profile (somewhat) from a client.

If it's a single machine, the most likely cause for slowdowns is memory issues (something using too much, or too little main memory), followed by horrible DB queries.

A PHP opcode cache always seems to help, also remember to disable "atime" (noatime mount option on *nix, a registry change on Windows) to avoid expensive disk writes.

A decent article on more Zend specific things is: http://till.vox.com/library/post/zendframework-performance.html

link|flag
That article is a life saver - thanks for the help! – Ali May 27 at 14:53
vote up 3 vote down

The most obvious one would be zend_cache

link|flag
vote up 8 vote down

Install APC on the server. Opcode caches eliminate a lot of the overhead caused by frameworks. You can generally do this by simply running

pecl install apc

on the server.

link|flag
+1 This is absolutely crucial for any PHP site that needs to have good performance. If not APC, then another opcode caching solution. – Bill Karwin Jun 23 at 17:06
vote up 5 vote down

Definitely install APC as it'll probably give you the biggest performance gain (2-4x) for the least work. I'd also recommend that you take a look at the Performance section of the reference guide.

Zend_Cache can be used with a lot of the ZF components to speed them up, as well as with your own data.

link|flag
vote up 15 vote down

The only way to know for sure where your bottlenecks are is doing deep profiling.

I use xdebug, combined with kcachegrind (part of kde for windows). It generates full call traces for every PHP script that is executed, which you can then inspect to find out which functions are taking up most of the time. No code changes necessary, so you can easily profile third-party libraries like Zend Framework.

link|flag
This is the best way, and can help with deciding where to use Zend_Cache – David Caunt May 25 at 11:06
I think there's a few tools that are good to look at before breaking out the debugger - Both firebug and Safari (I actually prefer Safari's) a view of all the requests made while loading your page. If you're loading a bazillion CSS and JS files, this will kill perceived performance. Likewise, it might be worth getting a dump of your DB queries - if 80% of your time is taken up by DB queries (or, even worse, half the time is the -same- query) dealing with this level of profiling is premature. – Sean McSomething Jun 10 at 16:48
vote up 2 vote down

You should check out the official Zend performance guide.
There are a loot of tips on howto tune up the speed of Zend, most of them are about reducing the ammounts of files zend loads at startup.

http://framework.zend.com/manual/en/performance.classloading.html

link|flag
vote up 6 vote down

Most performance issues on the web are database issues, always start looking at the database side of things before moving on.

It might be that there are a lot of database calls made where you can suffice with fewer calls, indexes not placed on the correct columns.

These are the things which usually slow things down.

link|flag
vote up 1 vote down

Agreed with the database comment. If your site is slow, it is most likely NOT a Zend framework issue, and most likely a database issue.

link|flag
vote up 3 vote down

Take a look here:

Performance Guide on Zend

Zend_Log which can log & trace your application

link|flag
vote up -3 vote down

One answer: don't use ZF. Try CodeIgniter. :)

The posters above obviously have not used the Zend Framework at all in a serious capacity! :) APC and the AutoLoader in Appendix C of the official Zend docs don't help much -- and this is for a basic MVC with no model (DB) yet. I did a xdebug trace and found that the heavy use of PHP's preg_match was killing ZF's performance. In other words, unless PHP's preg_match becomes faster in C, there's no way to optimize the slow Zend Framework in code.

link|flag
vote up 0 vote down

http://www.nabble.com/Caching-of-MVC-and-other-ZF-components-td15576554s16154.html

I guess we'll have to wait for PHP5.3 to be released and then hope we can use it on a production box. :)

link|flag
vote up 1 vote down

Regarding Zend_Db_Table metadata caching, you should configure the cache in your bootstrap and add it to the Zend_Db_Table_Abstract class as a static property.

(Similar to the way you would open a default database adapter and set it to be the default adapter for all Zend_Db_Table objects.)

There's a code example of configuring a default metadata cache in the section of the manual you linked to. This would go in your bootstrap.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.