use think\facade\Cache;
// 缓存在3600秒之后过期
Cache::set('缓存名', '值', 3600);
// 也可以使用DateTime设置过期时间
Cache::set('name', $value, new DateTime('2021-10-01 12:00:00'));
Cache::get('缓存名');
// 删除
Cache::delete('缓存名');
// 清空
Cache::clear();
if(Cache::get('access_token') == null){
......
}