我如何使用 laravel Cashe 在 10 秒内设置新的 cashe

how can i set new cashe just in 10s using laravel Cashe

我使用了 put 函数 制作新的手册 Cashe。例如:

$cashtime =Cache::put('filekey', 'mycashtime', 20);

并发送给查看但未过期。 当我发送它查看时,它会支持我的真实。但在 20 岁之后必须向我发送 false 并使其过期。

然后我如何检查它是否已过期。

我解决了 it.my 问题,首先我必须检查密钥是否不存在,然后再做一些事情。

       view()->composer('admin.sidebar', function($view){
            $cashtime = Cache::get('filekeys');
            if($cashtime == Null){
                    Cache::put('filekeys', 'mycashtimes', now()->addMinutes(1));
                    //do something
            }else{
                //do something
            }
            
            $view->with(['testmneda' => $cashtime]);
        });