yiisoft/yii2-elasticsearch

Elasticsearch integration and ActiveRecord for the Yii framework

Fund package maintenance!
Open Collective
Tidelift

Installs: 1 302 780

Dependents: 27

Suggesters: 0

Security: 1

Stars: 428

Watchers: 49

Forks: 252

Open Issues: 20

Type:yii2-extension

2.1.4 2023-05-22 21:00 UTC

README

68747470733a2f2f696d616765732e636f6e74656e74737461636b2e696f2f76332f6173736574732f626c74656664643062353337323466613263652f626c74323830323137613633623832613733342f3562626461616366363365643233393933366137646435362f656c61737469632d6c6f676f2e737667

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

Depending on the version of Elasticsearch you are using you need a different version of this extension.

  • For Elasticsearch 1.6.0 to 1.7.6 use extension version 2.0.x
  • For Elasticsearch 5.x or above use extension version 2.1.x

Installation

The preferred way to install this extension is through composer:

composer require --prefer-dist yiisoft/yii2-elasticsearch:"~2.1.0"

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
            ],
            'dslVersion' => 7, // default is 5
        ],
    ]
];