Skip to content

OpenClassrooms/ElasticsearchBundle

Repository files navigation

ElasticsearchBundle

Build Status Coverage Status SensioLabsInsight

Symfony2 Bundle that expose Elasticsearch official client configuration

Installation

This bundle can be installed using composer:

composer require openclassrooms/use-case-bundle or by adding the package to the composer.json file directly.

{
    "require": {
        "openclassrooms/elasticsearch-bundle": "*"
    }
}

After the package has been installed, add the bundle to the AppKernel.php file:

// in AppKernel::registerBundles()
    $bundles = array(
        // ...
        new OpenClassrooms\Bundle\ElasticsearchBundle\OpenClassroomsElasticsearchBundle(),
        // ...
);

Configuration

Add the elasticsearch hosts to the config.yml

open_classrooms_elasticsearch:
    clients:
        client_name:
            hosts :
                - host
                - 127.0.0.1
        second_client_name:
            hosts :
                - second-host

About

Symfony2 Bundle that expose Elasticsearch official client configuration

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages