alanalbert/laravel_mutex

Get the mutex file path of command in laravel.

1.0.1 2020-11-11 16:11 UTC

This package is auto-updated.

Last update: 2024-04-20 18:10:12 UTC


README

Get the file mutex path of command in laravel or lumen.

获取laravel或lumen的命令文件锁路径。

Usage

  1. Install
    composer require alanalbert/laravel_mutex --dev
  2. Code
     $path = get_command_mutex(function (\Illuminate\Console\Scheduling\Schedule $schedule) {
         // schedule command
         return $schedule->command('test')->withoutOverlapping()->runInBackground();
     });
    You can find the file in storage/framework/cache/data.

Different environments will get different paths. 不同的运行环境将会得到不同的文件锁路径。