Reputation: 2430
There's a big issue I am facing with now - symfony takes 7-10sec to bootstrap. Some research showed that this is because of tons of file inclusions symfony makes at start.
On my local machine I could fix it by increasing realpath_cache_size setting at php.ini, but on shared hosting this does not work (because open_basedir restriction is in effect and php disables realpath cache in this situation).
Now I am stuck as obviosly application is not usable with such huge bootstrap delay. Does anyone have this issue.. how can I fix it?
Upvotes: 3
Views: 1611
Reputation: 1639
There are a lot of ways do fasten symfony bootstrap.
A few hints:
See the following checklist covering the basics of symfony2 application deployement for production: http://www.symfony2-checklist.com/
Upvotes: 3