$posts = Model_Post::find("all", array( 'where' => array('something' => $something) ));
Cache::call('cache_name', array('Model_Post', 'find'), array("all", array( 'where' => array('something' => $something) ));
Jelmer Schreuder wrote on Wednesday 6th of July 2011:Which you could use with Cache::call() like this:Cache::call('cache_name', array('Model_Post', 'find'), array("all", array( 'where' => array('something' => $something) ));
It looks like you're new here. If you want to get involved, click one of these buttons!