I am working on a Symfony2 project. My project uses database to store the data and Doctrine2 to retrieve that data.
As the data within the database has grown the qu
In developer mode Symfony2 creates a new cache on every query. So suppose you have many queries then it will cache all queries one by one.
This takes more time than in production mode, because in production mode the cache will only be stored once.