Caching Doctrine results Symfony2

前端 未结 2 1000
忘了有多久
忘了有多久 2020-12-16 20:21

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

2条回答
  •  暖寄归人
    2020-12-16 20:48

    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.

提交回复
热议问题