Skip to content

Instantly share code, notes, and snippets.

View pabloardilacode's full-sized avatar

pabloardilacode

View GitHub Profile
@pabloardilacode
pabloardilacode / gist:6574121
Created September 15, 2013 20:31
Laravel 3 example of using remember caching method
return Cache::remember($this->id.'_pabloardilacodeCount', function(){
return PabloConns::where_requester_id($this->id)->where_verified(1)->count();
}, 60*12);