Skip to content

BrokerExchange/ElasticQueue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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