As you know you can cache several elements in you application. When I wrote a value to the cache I did it by setting the duration in the third parameter of write:
Cache::write('cache_key', 'value to cache',array(
'config'=>'default',
'duration'=>'+1 day')
);
But today I learned a lesson from Mark Story that this [...]
