Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created May 23, 2011 19:40
Show Gist options
  • Save eminetto/987409 to your computer and use it in GitHub Desktop.
Save eminetto/987409 to your computer and use it in GitHub Desktop.
/*
 * cache para metadados das tabelas. Usado pelos Models para salvar os detalhes da tabela (campos,chaves)
*/
Zend_Db_Table_Abstract::setDefaultMetadataCache($cache);
/*
 * Configura o cache para a traducao
 */
Zend_Translate::setCache($cache);
/* coloca o zend_date e o zend_locale em cache */
Zend_Locale::setCache($cache);
Zend_Date::setOptions(array('cache' => $cache));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment