2013-08-21 120 views
0

如何在使用symfony時在文本文件中緩存MySQL查詢24小時?mySQL查詢緩存symfony

我不想緩存只剩下MySQL,因爲白標籤。

有沒有warpet或相似?

我已經在谷歌搜索結果,但沒有找到結果。

回答

3

單獨Symfony沒有任何查詢/結果緩存功能,but doctrine does。有沒有在使用Symfony的,有些人的便利 - 使學說緩存可以通過config.yml做到:

doctrine: 
    orm: 
    metadata_cache_driver: apc 
    result_cache_driver: apc 
    query_cache_driver: apc 

顯然,每個查詢結果/參數進行手動保存,這些選項只啓用。

+0

深入閱讀:[Symfony's Doctrine配置](http://symfony.com/doc/master/reference/configuration/doctrine.html) - [緩存技巧幻燈片](http://fr.slideshare.net/liuggio /理性 - 提升你的symfony2-application-with-caching-tips-and-monitoring) - [Doctrine Cache Library](https://github.com/doctrine/cache) – Touki