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: | 2025-03-07 03:10:09 |
Package Statistics | |
---|---|
Total Downloads: | 24 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 5 |
Total Forks: | 3 |
Total Open Issues: | 0 |
Laravel Queue Driver for Elasticsearch
ElasticQueue is released under the MIT Open Source License, https://opensource.org/licenses/MIT
ElasticQueue © Broker Exchange Network 2018
composer require brokerexchange\elasticqueue
ElasticQueue\ElasticQueueServiceProvider::class,
to config/app.php 'elasticsearch' => [
'driver' => 'elasticsearch',
'host' => explode(',',env('ELASTICSEARCH_HOST','localhost:9200')),
'index' => 'jobs',
'queue' => 'default',
'retry_after' => 60,
],