up vote 0 down vote favorite
share [g+] share [fb]

In my index.php file I always load some classes used later. From profiler it states it sometimes can take about 20% of entire code. Is there any improvement that can make this process faster?

I would try to make this list of classes shorter, but app is very big and checking all dependencies will be costly.

link|improve this question

62% accept rate
feedback

3 Answers

Op-code caches such as APC and eAccelerator store a compiled version of your scripts in a cache. This dramatically reduces memory usage and loading time for frequently used static scripts.

link|improve this answer
feedback

While using an opcode cache (such as APC) will reduce the impact of loading/parsing/compiling the class, you'll still be loading them all on every page load & doing whatever initialization accompanies a require_once() call. If you were to set up an autoload function then the classes won't be loaded until your code actually needs to use them. There's a little overhead involved in using a class autoloader but it makes the code easier to maintain.

As always, YMMV, so benchmark your application to see if it's worthwhile in your case.

link|improve this answer
feedback

You might want to look at apc php.net/apc

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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