开源软件名称(OpenSource Name):spatie/laravel-short-schedule开源软件地址(OpenSource Url):https://github.com/spatie/laravel-short-schedule开源编程语言(OpenSource Language):PHP 100.0%开源软件介绍(OpenSource Introduction):Schedule artisan commands to run at a sub-minute frequencyLaravel's native scheduler allows you to schedule Artisan commands to run every minute. If you need to execute something with a higher frequency, for example every second, than you've come to the right package. With laravel-short-schedule installed, you can do this: // in app\Console\Kernel.php
protected function shortSchedule(\Spatie\ShortSchedule\ShortSchedule $shortSchedule)
{
// this command will run every second
$shortSchedule->command('artisan-command')->everySecond();
// this command will run every 30 seconds
$shortSchedule->command('another-artisan-command')->everySeconds(30);
// this command will run every half a second
$shortSchedule->command('another-artisan-command')->everySeconds(0.5);
// this command will run every second and its signature will be retrieved from command automatically
$shortSchedule->command(\Spatie\ShortSchedule\Tests\Unit\TestCommand::class)->everySecond();
} Are you a visual learner?In this video you'll see a demonstration of the package. Want to know how it works under the hood? Then watch this video. Finally, there's this video that shows how the package is tested. You'll learn how you can test ReactPHP powered loops. These videos are also part of the Laravel Package Training. Support usWe invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products. We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall. InstallationYou can install the package via composer: composer require spatie/laravel-short-schedule In your production environment you can start the short scheduler with this command php artisan short-schedule:run You should use a process monitor like Supervisor to keep this task going at all times, and to automatically start it when your server boots. Whenever you change the schedule, you should restart this command. Handle memory leaksTo deal with commands that leak memory, you can set the lifetime in seconds of the short schedule worker: php artisan short-schedule:run --lifetime=60 // after 1 minute the worker will be terminated After the given amount of seconds, the worker and all it's child processes will be terminated, freeing all memory. Then supervisor (or similar watcher) will bring it back. LumenBefore you can run the cp ./vendor/spatie/laravel-short-schedule/src/Commands/ShortScheduleRunCommand.php ./app/Console/Commands/ShortScheduleRunCommand.php Next, edit the new UsageIn // in app\Console\Kernel.php
protected function shortSchedule(\Spatie\ShortSchedule\ShortSchedule $shortSchedule)
{
// this artisan command will run every second
$shortSchedule->command('artisan-command')->everySecond();
// this artisan command will run every second, its signature will be resolved from container
$shortSchedule->command(\Spatie\ShortSchedule\Tests\Unit\TestCommand::class)->everySecond();
} Specify the amount of secondsYou can run an artisan command every single second like this: $shortSchedule->command('artisan-command')->everySecond(); You can specify a specific amount of seconds using $shortSchedule->command('artisan-command')->everySeconds(30); You can even schedule tasks at sub-second frequency. This task will run every half a second. $shortSchedule->command('artisan-command')->everySeconds(0.5); Scheduling shell commandsUse $shortSchedule->exec('bash-command')->everySecond(); Preventing overlapsBy default, a scheduled command will run, even if the previous invocation is still running. You can prevent that by tacking on $shortSchedule->command('artisan-command')->everySecond()->withoutOverlapping(); Between time constraintsLimit the task to run between start and end times. $shortSchedule->command('artisan-command')->between('09:00', '17:00')->everySecond(); It is safe use overflow days. In this example the command will run on every second between 21:00 and 01:00 $shortSchedule->command('artisan-command')->between('21:00', '01:00')->everySecond(); Truth test constraintsThe command will run if the given closure return a truthy value. The closure will be evaluated at the same frequency the command is scheduled. So if you schedule the command to run every second, the given closure will also run every second. $shortSchedule->command('artisan-command')->when(fn() => rand() %2)->everySecond(); Environment constraintsThe command will only run on the given environment. $shortSchedule->command('artisan-command')->environment('production')->everySecond(); You can also pass an array: $shortSchedule->command('artisan-command')->environment(['staging', 'production'])->everySecond(); Composite constraintsYou can use all constraints mentioned above at once. The command will only execute if all the used constraints pass. $shortSchedule
->command('artisan-command')
->between('09:00', '17:00')
->when($callable)
->everySecond(); Maintenance ModeCommands won't run whilst Laravel is in maintenance mode. If you would like to force a command to run in maintenance mode you can use the $shortSchedule->command('artisan-command')->everySecond()->runInMaintenanceMode(); Running Tasks On One ServerLimit commands to only run on one server at a time. $shortSchedule->command('artisan-command')->everySecond()->onOneServer(); EventsExecuting any code when responding to these events is blocking. If your code takes a long time to execute, all short scheduled jobs will be delayed. We highly recommend to put any code you wish to execute in response to these events on a queue.
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论