//保存之后更新缓存数据 Post::saved(function($post){ $cacheKey = 'post_'.$post->id; $cacheData = Cache::get($cacheKey); if(!$cacheData){ Cache::add($cacheKey,$post,60*24*7); }else{ Cache::put($cacheKey,$post,60*24*7); } }); //删除之后清除缓存数据 Post::deleted(function($post){ $cacheKey = 'post_'.$post->id; $cacheData = Cache::get($cacheKey); if($cacheData){ Cache::forget($cacheKey); } if(Cache::get('post_views_'.$post->id)) Cache::forget('post_views_'.$post->id); });
我们将缓存有效期设置为一周。这样在文章创建或更新时会将数据保存到缓存,而删除文章时也会从缓存中移除数据,从而保证被删除后的文章查看详情时也不能浏览。
更多关于Laravel相关内容感兴趣的读者可查看本站专题:《Laravel框架入门与进阶教程》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php日期与时间用法总结》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》