My symfony projects work veeery slow, between 4 and 8 seconds per page
(I’m working in dev environment). I’ve tried to use PHP APC (with it, it works slower), I’ve tried to optimize my code, I`ve tried to explore standard symfony library, etc. But nothig helped me.
P.S. I have a good hardware, i`m sure that problem isn’t in it.
Find where your bottle neck is in your application.
Most likely, this won’t be a Symfony issue, but something you have done or a way you have done it.
Install XDebug, profile your application, then analyze the results to figure out what is taking all the relative time to compute.
You will probably see something taking like 98% of the relative time, and it will probably be something obscure like a timeout request etc.