22/01
2018
dev-master
9999999-devLaravel Queue implementation for MongoDB
MIT
The Requires
by Marko Maletic
Wallogit.com
2017 © Pedro Peláez
Laravel Queue implementation for MongoDB
Laravel Queues implementation for MongoDB, (*1)
Add the service provider in config/app.php:, (*2)
DogeDev\Queue\MongodbQueueServiceProvider::class,, (*3)
If you want to use MongoDB as your database backend, change the the driver in config/queue.php:, (*4)
'connections' => [
'database' => [
'driver' => 'mongodb',
'table' => 'jobs',
'queue' => 'default',
'expire' => 60,
],
```
If you want to use MongoDB to handle failed jobs, change the database in config/queue.php:
```
'failed' => [
'database' => 'mongodb',
'table' => 'failed_jobs',
],
Laravel Queue implementation for MongoDB
MIT