I have set up Symfony but every page load requires 40 seconds.
If I have an empty controller it takes 8 seconds to load. If I start to make some complex queries on the database, it's worse. What can I do?
- deactivate the profiler? (will this change a lot?)
- activate APC on dev mode? (but will this not be a problem for changing the code)
- put the session inside APC?
- put Doctrine in the garbage?
- .... ?
I don't really know where to start.
(I am using Windows 7 with Xampp server and 8gb of ram)