Symfony 1.2 APC Cache

;##### APC config ### ;apc.enabled = On apc.enable_cli = On apc.shm_size = 128 Doctrine cache As of sf 1.4 http://www.symfony-project.org/advent_calendar/12/en http://www.doctrine-project.org/documentation/manual2/1_0/en/one-page#caching http://www.sfblog.fr/page/utiliser-memcache-avec-doctrine-sous-symfony Setup for sf 1.2 In the ProjectConfiguration: public function initialize() { //enable Doctrine cache $manager = Doctrine_Manager::getInstance(); $cacheDriver = new Doctrine_Cache_Apc(); $manager->setAttribute(Doctrine::ATTR_RESULT_CACHE, $cacheDriver); } Example query (in UllFlowAppTable.class.php): /** * Find by Id … Read more