承接 djereg/async-queue 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

djereg/async-queue

Composer 安装命令:

composer require djereg/async-queue

包简介

Async queue driver for Laravel framework.

README 文档

README

Push the queued job to the background without waiting for its response. Now you can use the "file" and "cache" storage type. The "database" is coming soon.

Installation

Add the package to your composer.json:

{
    "require": {
        "djereg/async-queue": "dev-master"
    }
}

Add the Service Provider to the providers array in config/app.php

'providers' => array(
    // ...
    'Djereg\AsyncQueue\AsyncQueueServiceProvider',
    // ...
)

Now you have to use the async driver in config/queue.php

'default' => 'async',

'connections' => array(
	// ...
	'async' => array(
		'driver' => 'async',
		'storage' => 'file', // "file" and "cache" is now available
	),
	// ...
}

That's all!

For more info see http://laravel.com/docs/queues

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-12-02