sygytyr/yii2-elasticsearch

Elasticsearch integration and ActiveRecord for the Yii framework

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:yii2-extension

pkg:composer/sygytyr/yii2-elasticsearch

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

This package is auto-updated.

Last update: 2025-11-04 10:18:49 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
        ],
    ]
];