Zend DB overhead is huge?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
nutkenz
Forum Contributor
Posts: 155
Joined: Tue Jul 19, 2005 12:25 pm

Zend DB overhead is huge?

Post by nutkenz »

Benchmarking my site shows the following:

Code: Select all

    time index  ex time %
Start   1216395577.17879600 -   0.00%
Functions: Start    1216395577.17919400 0.000398    0.69%
Functions: Finish   1216395577.18845500 0.009261    16.02%
DB: Start   1216395577.19268700 0.004232    7.32%
DB: Zend included   1216395577.20334400 0.010657    18.43%
DB: Finish  1216395577.20881200 0.005468    9.46%
Apparently, just including the DB class and staring a connection counts for 25% of total execution time... That seems like a lot?
alex.barylski
DevNet Evangelist
Posts: 6267
Joined: Tue Dec 21, 2004 5:00 pm
Location: Winnipeg

Re: Zend DB overhead is huge?

Post by alex.barylski »

Everything about Zend framework is bloated...
Post Reply