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 originalprotected function _initDbTableCache()
{
// Fronted cache options
$frontendOptions = array( 'lifetime' => 7200, // cache lifetime of 2 hours
'automatic_serialization' => true
);
// Backend Cache Options
'cache_dir' => APPLICATION_PATH .'/../cache/' // Directory where to put the cache files
);
// Zend_Cache object
$cache = Zend_Cache::factory('Core',
'File',
$frontendOptions,
$backendOptions);
Zend_Db_Table_Abstract::setDefaultMetadataCache($cache);
}
Saludos.