yiisoft/db-elasticsearch

Yii Framework Elasticsearch Query and ActiveRecord

dev-master / 1.0.x-dev 2023-06-12 03:40 UTC

This package is auto-updated.

Last update: 2024-04-12 05:39:17 UTC


README

68747470733a2f2f7374617469632d7777772e656c61737469632e636f2f6173736574732f626c74343562303838366339306265636565652f6c6f676f2d656c61737469632e737667

Yii Framework Elasticsearch Query and ActiveRecord


This extension provides the elasticsearch integration for the Yii framework. 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

Extension requires at least elasticsearch version 5.0.

Installation

The preferred way to install this extension is through composer.

composer require --prefer-dist yiisoft/yii-elasticsearch

Configuration

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

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