e96/yii2-elasticsearch

Elasticsearch integration and ActiveRecord for the Yii framework

Installs: 1 086

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 250

Type:yii2-extension

2.1.1 2017-08-13 22:02 UTC

README

This extension provides the elasticsearch integration for the Yii framework 2.0. It includes basic querying/search support and also implements the ActiveRecord pattern that allows you to store active records in elasticsearch.

For license information check the LICENSE-file.

Documentation is at docs/guide/README.md.

Latest Stable Version Total Downloads Build Status

Requirements

This extension works with elasticsearch version 1.0 to 4.x. elasticsearch 5.0 is currently not supported.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist yiisoft/yii2-elasticsearch

or add

"yiisoft/yii2-elasticsearch": "~2.0.0"

to the require section of your composer.json.

Configuration

To use this extension, you have to configure the Connection class in your application configuration:

return [
    //....
    'components' => [
        'elasticsearch' => [
            'class' => 'yii\elasticsearch\Connection',
            'nodes' => [
                ['http_address' => '127.0.0.1:9200'],
                // configure more hosts if you have a cluster
            ],
        ],
    ]
];