Created
December 12, 2011 23:08
-
-
Save eminetto/1469573 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$cache = Zend_Registry::get('cache'); | |
//busca os posts | |
$posts = new Application_Model_Posts; //cria um novo objeto Posts | |
//verifica se já está no cache o resultado | |
if(!$result = $cache->load('cachePosts')) { | |
//não existe no cache, processar e salvar | |
$result = $posts->fetchAll();//pega todos os posts | |
$cache->save($result, 'cachePosts'); | |
} | |
$this->view->data = $result; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment