我正在尝试在 Laravel 中存储计划作业的最后运行时间。但是,缓存不会更新日期。我希望在再次调用该函数之前记住缓存。
public function setLastRun() {
Cache::forget('last_automation_api_run');
Cache::rememberForever('last_automation_api_run', function () {
return now()->toDateTimeString();
});
}