BrokerExchange / ElasticQueue by Artistan

Laravel Queue Driver for Elasticsearch
22
3
6
Package Data
Maintainer Username: Artistan
Maintainer Contact: brian@brokerbin.com (Brian Mix)
Package Create Date: 2016-11-03
Package Last Update: 2018-10-05
Language: PHP
License: MIT
Last Refreshed: 2024-04-17 15:11:50
Package Statistics
Total Downloads: 22
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 6
Total Forks: 3
Total Open Issues: 0

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

ElasticQueue

Laravel Queue Driver for Elasticsearch

License

ElasticQueue is released under the MIT Open Source License, https://opensource.org/licenses/MIT

Copyright

ElasticQueue © Broker Exchange Network 2018

Installation

  • Run command composer require brokerexchange\elasticqueue
  • If you are using Laravel 5.5+, this package will be auto-discovered
    • Otherwise, add ElasticQueue\ElasticQueueServiceProvider::class, to config/app.php
  • Add to config/queue.php
        'elasticsearch' => [
            'driver' => 'elasticsearch',
            'host' => explode(',',env('ELASTICSEARCH_HOST','localhost:9200')),
            'index' => 'jobs',
            'queue' => 'default',
            'retry_after' => 60,
        ],