alanalbert / laravel_mutex
Get the mutex file path of command in laravel.
1.0.1
2020-11-11 16:11 UTC
Requires
- illuminate/cache: >=5.7.0
- illuminate/console: >=5.7.0
- illuminate/container: >=5.7.0
This package is auto-updated.
Last update: 2024-12-20 19:51:53 UTC
README
Get the file mutex path of command in laravel or lumen.
获取laravel或lumen的命令文件锁路径。
Usage
- Install
composer require alanalbert/laravel_mutex --dev
- Code
$path = get_command_mutex(function (\Illuminate\Console\Scheduling\Schedule $schedule) { // schedule command return $schedule->command('test')->withoutOverlapping()->runInBackground(); });
You can find the file instorage/framework/cache/data
.
Different environments will get different paths. 不同的运行环境将会得到不同的文件锁路径。