Queues
如果您想使用 MongoDB 作为 Laravel 队列的数据库后端,请在 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, ], ],
如果要使用 MongoDB 处理失败的作业,请在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', ],
在config/app.php
中添加服务提供商:
MongoDB\Laravel\MongoDBQueueServiceProvider::class,