blacksesion/yii2-elasticsearch

Elasticsearch integration and ActiveRecord for the Yii framework

Fund package maintenance!
Open Collective

Installs: 26

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 252

Open Issues: 0

Type:yii2-extension

2.1.1 2019-08-24 22:09 UTC

README

68747470733a2f2f7374617469632d7777772e656c61737469632e636f2f6173736574732f626c74343562303838366339306265636565652f6c6f676f2d656c61737469632e737667

Elasticsearch Query and ActiveRecord for Yii 2


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

Dependent on the version of elasticsearch you are using you need a different version of this extension.

  • Extension version 2.0.x works with elasticsearch version 1.6.0 to 1.7.6.
  • Extension version 2.1.x requires at least elasticsearch version 5.0.

Note: to provide the work necessary a requests to the delete by query, in elasticsearch since version 2.0, you should to install the plugin delete-by-query

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist yiisoft/yii2-elasticsearch:"~2.0.0"

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
            ],
        ],
    ]
];