doge-dev/laravel-mongo-queue 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

doge-dev/laravel-mongo-queue

Composer 安装命令:

composer require doge-dev/laravel-mongo-queue

包简介

Laravel Queue implementation for MongoDB

README 文档

README

Laravel Queues implementation for MongoDB

Installation

Add the service provider in config/app.php:

DogeDev\Queue\MongodbQueueServiceProvider::class,

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

'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',
],

统计信息

  • 总下载量: 39.97k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-01-22