Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 841 Bytes

queues.md

File metadata and controls

34 lines (28 loc) · 841 Bytes

Queues

If you want to use MongoDB as your database backend for Laravel Queue, change the driver in config/queue.php:

'connections' => [
    'database' => [
        'driver' => 'mongodb',
        // You can also specify your jobs specific database created on config/database.php
        'connection' => 'mongodb-job',
        'table' => 'jobs',
        'queue' => 'default',
        'expire' => 60,
    ],
],

If you want to use MongoDB to handle failed jobs, change the database in config/queue.php:

'failed' => [
    'driver' => 'mongodb',
    // You can also specify your jobs specific database created on config/database.php
    'database' => 'mongodb-job',
    'table' => 'failed_jobs',
],

Add the service provider in config/app.php:

MongoDB\Laravel\MongoDBQueueServiceProvider::class,