是否有可能为给定的应用程序启用Doctrine's Query Caching? 在Configuration.class.php中尝试过,但没有运气。
答案 0 :(得分:1)
您可以添加:
public function configureDoctrine(Doctrine_Manager $manager)
{
// Doctrine_Cache_Apc in the example
$manager->setAttribute(Doctrine::ATTR_QUERY_CACHE, new Doctrine_Cache_Apc());
}
到你的:
/<project_path>/apps/<app_name>/config/<app_name>Configuration.class.php