brokerexchange/elasticqueue

Elasticsearch的Laravel队列驱动

v0.3 2017-10-18 14:47 UTC

This package is auto-updated.

Last update: 2024-09-27 04:02:17 UTC


README

Latest Stable Version Latest Unstable Version Total Downloads License composer.lock

ElasticQueue

Elasticsearch的Laravel队列驱动

许可证

ElasticQueue是在MIT开源许可证下发布的,https://open-source.org.cn/licenses/MIT

版权

ElasticQueue © Broker Exchange Network 2018

安装

  • 运行命令 composer require brokerexchange\elasticqueue
  • 如果你使用Laravel 5.5+,则此包将自动发现
    • 否则,将 ElasticQueue\ElasticQueueServiceProvider::class, 添加到 config/app.php
  • 添加到 config/queue.php
        'elasticsearch' => [
            'driver' => 'elasticsearch',
            'host' => explode(',',env('ELASTICSEARCH_HOST','localhost:9200')),
            'index' => 'jobs',
            'queue' => 'default',
            'retry_after' => 60,
        ],