hamdallah90/elasticqueue

Laravel 队列驱动程序用于 Elasticsearch

dev-master 2023-01-25 20:49 UTC

This package is not auto-updated.

Last update: 2024-09-20 07:47:43 UTC


README

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

ElasticQueue

Laravel 队列驱动程序用于 Elasticsearch

许可证

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

版权

ElasticQueue © Broker Exchange Network 2018

安装

  • 运行命令 composer require hamdallah90/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,
        ],