2017 © Pedro Peláez
 

library laravel-queue-walker

Laravel queue walker, process all jobs on a queue.

image

salopot/laravel-queue-walker

Laravel queue walker, process all jobs on a queue.

  • Tuesday, April 12, 2016
  • by salopot
  • Repository
  • 1 Watchers
  • 2 Stars
  • 342 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 4 % Grown

The README.md

Laravel queue walker

Process all jobs on a queue., (*1)

Features

  • Based on queue:work command.
  • Once exec all jobs awaiting in queue and end executing
  • Don't require dedicated or virtual server to process queues (best way use "php artisan queue:work --daemon")
  • Stored "queue:work" options: queue, delay, memory, tries

Installation

The preferred way to install this extension is through composer., (*2)

Require this package with composer using the following command:, (*3)

composer require salopot/laravel-queue-walker "dev-master"

or add, (*4)

"salopot/laravel-queue-walker": "dev-master"

to the require section of your composer.json file., (*5)

After updating composer, add the ServiceProvider to the providers array in config/app.php, (*6)

Salopot\QueueWalker\QueueWalkerServiceProvider::class,

Usage

Run artisan command for execute all jobs awaiting in queue:, (*7)

php artisan queue:walk

or add call command to laravel scheduler (see: https://laravel.com/docs/5.1/scheduling), (*8)

$schedule->command('queue:walk')->everyMinute();

The Versions

12/04 2016

dev-master

9999999-dev

Laravel queue walker, process all jobs on a queue.

  Sources   Download

MIT

The Requires

 

by Alexander Kireev

laravel jobs queue