enrise / zf-elasticsearch
A very simple but drop-in zf2 module for the elasticsearch client library.
Installs: 4 467
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 11
Forks: 4
Open Issues: 4
Requires
- php: ^5.4 || ^7
- elasticsearch/elasticsearch: ^1.0
This package is not auto-updated.
Last update: 2022-02-01 12:46:12 UTC
README
This repository contains a very simple but drop-in solution for using the elasticsearch client library in a ZF2 project.
The client is pre-configured with sensible defaults. You can further configure the client in the module config just as you would configure the elasticsearch client directly.
Usage example
$searchClient = $serviceLocator->get('elasticsearch'); $searchClient->search();
Installation
Require the module via composer:
$ composer require enrise/zf-elasticsearch
Load the module in your application:
// config/application.config.php return array( 'modules' => array( // ... 'Enrise\\ZfModule\\ElasticSearch', ) );
And you're done!
Configuration example
To fine-tune your installation you can tweak the elasticsearch client configuration. For example:
// In your config file return [ 'elasticsearch' => [ 'hosts' => [ 'es1.enrise.com', 'es2.enrise.com' ], 'logging' => true ] ];
Dependencies
elasticsearch/elasticsearch:^1.0
License
Please see the LICENSE file in this repository
Contributors
This zend framework module was made by Richard Tuin.