$list = DB::select()
->from('...')
->cached(60 * 60)
->execute()
$list = Cache::call('...', function () {
return DB::select()
->from('...')
->execute()
->as_array();
}, array(), 60 * 60);
It looks like you're new here. If you want to get involved, click one of these buttons!