return [
// Default driver to use for the queue
- // Options: null, sync, redis
+ // Options: sync, database, redis
'default' => env('QUEUE_CONNECTION', 'sync'),
// Queue connection configuration
],
+ // Job batching
+ 'batching' => [
+ 'database' => 'mysql',
+ 'table' => 'job_batches',
+ ],
+
// Failed queue job logging
'failed' => [
'driver' => 'database-uuids',