Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/07/2010, 22:32
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 6 meses
Puntos: 2135
Respuesta: Zend_Cache y Zend_Db_Table_Abstract

Claro coloca ese código tal cual en el Bootstrap y con eso se va a pasar al Abstract y así no lo tienes que poner en cada clase.

Por ejemplo yo lo tengo colocado así:
Código PHP:
Ver original
  1. protected function _initDbTableCache()
  2.     {
  3.         // Fronted cache options
  4.         $frontendOptions = array(
  5.            'lifetime' => 7200, // cache lifetime of 2 hours
  6.            'automatic_serialization' => true
  7.         );
  8.        
  9.         // Backend Cache Options
  10.         $backendOptions = array(
  11.             'cache_dir' => APPLICATION_PATH .'/../cache/' // Directory where to put the cache files
  12.         );
  13.        
  14.         // Zend_Cache object
  15.         $cache = Zend_Cache::factory('Core',
  16.                              'File',
  17.                              $frontendOptions,
  18.                              $backendOptions);
  19.         Zend_Db_Table_Abstract::setDefaultMetadataCache($cache);
  20.     }

Saludos.