在项目中使用 laravel 的 cache 时,使用下面形式方法: $value = Cache::remember('users', $minutes, function() { return DB::table('users')->get(); }); 但是,发现如果获取的数据为空或者不返回数据,它也照样存储,消耗内存,因此换成了先校验是否存在再保存的形式. 同时,Cache::tags 的用法是以一系列 tag 作为 cache 的键在内存中存储的,所以当把其中某个 tag 换成别的,该