sygytyr/yii2-elasticsearch

Elasticsearch integration and ActiveRecord for the Yii framework

Maintainers

Package info

github.com/Sygytyr/yii2-elasticsearch

Homepage

Forum

Wiki

Type:yii2-extension

pkg:composer/sygytyr/yii2-elasticsearch

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master / 2.1.x-dev 2025-11-04 10:14 UTC

This package is auto-updated.

Last update: 2026-03-04 10:59:09 UTC


README

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