/** * 博客归档,使用cache机制,以加快速度 */ public function getArchive() { if (!Cache::has('archives')) { //如果归档缓存不存在 DataCache::cacheArchive(); } $archives = Cache::get('archives'); $title = '文章归档'; $description = Cache::get('website_title', '芽丝博客') . '-' . $title . ',本博客由 芽丝内容管理框架(YASCMF) 所驱动的博客,基于Laravel实现的内容管理框架,Github地址: https://github.com/douyasi/yascmf 。'; return view('front.archive', compact('archives', 'title', 'description')); }