Laravel 8 访问被打上标签的缓存数据
若要获取一个被打上标签的缓存数据,将相同标签的有序数组传递给 tags
方法,然后调用 get
方法检索你要获取的键:
$john = Cache::tags(['people', 'artists'])->get('John');
$anne = Cache::tags(['people', 'authors'])->get('Anne');
若要获取一个被打上标签的缓存数据,将相同标签的有序数组传递给 tags
方法,然后调用 get
方法检索你要获取的键:
$john = Cache::tags(['people', 'artists'])->get('John');
$anne = Cache::tags(['people', 'authors'])->get('Anne');