larkit / yii2-elasticsearch
Elasticsearch 7.* integration and ActiveRecord for the Yii framework
Fund package maintenance!
Open Collective
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 252
Type:yii2-extension
Requires
- ext-curl: *
- yiisoft/yii2: ~2.0.14
This package is auto-updated.
Last update: 2024-12-14 01:22:56 UTC
README
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.
Requirements
支持 es 7.*
Installation
The preferred way to install this extension is through composer:
composer require larkit/yii2-elasticsearch:"dev-master"
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 ], ], ] ];