I've been wondering how loading a lot of bundles in the appkernel (let's say 300+) and their routing information impacts the overall application performance?

Look at it as a matter of conditional loading of bundles for frontend and backend (providing some of them are actually needed only for only one environment) - is it worth doing it?

I know it may be difficult to answer without actually testing it in some real world scenario, but maybe someone has studied the internals of sf2 extensively enough to tell what's the scale of the problem when adding a lot of bundles and their routing configurations.

link|improve this question

78% accept rate
feedback

2 Answers

I'm not an expert in Sf2, but I know that it compiles configurations into PHP code. So if you make things right (do not boot a bundle when sf2 is booted, for example), they will be dumped into php code which will be apc cached, too.

Regards,

link|improve this answer
feedback

It shouldn't if it was designed properly, no. Library paths and such should be cached (APC, on disk, etc.), but it shouldn't affect performance. IF it does, switch to Lithium (http://lithify.me) ha. But seriously, you can tell by using something like xdebug with webgrind or something.

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.