enrise/zf-elasticsearch

This package is abandoned and no longer maintained. No replacement package was suggested.

A very simple but drop-in zf2 module for the elasticsearch client library.

1.0.1 2016-08-16 08:12 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:46:12 UTC


README

Latest Stable Version License

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.