LaravelPackages.net
Acme Inc.
Toggle sidebar
brokerexchange/elasticqueue

Laravel Queue Driver for Elasticsearch

26
3
v0.3
About brokerexchange/elasticqueue

brokerexchange/elasticqueue is a Laravel package for laravel queue driver for elasticsearch. It currently has 3 GitHub stars and 26 downloads on Packagist (latest version v0.3). Install it with composer require brokerexchange/elasticqueue. Discover more Laravel packages by brokerexchange or browse all Laravel packages to compare alternatives.

Last updated

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

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