|
|
il y a 10 mois | |
|---|---|---|
| .. | ||
| ActiveDataProvider.php | il y a 10 mois | |
| ActiveFixture.php | il y a 10 mois | |
| ActiveQuery.php | il y a 10 mois | |
| ActiveRecord.php | il y a 10 mois | |
| BatchQueryResult.php | il y a 10 mois | |
| BulkCommand.php | il y a 10 mois | |
| CHANGELOG.md | il y a 10 mois | |
| Command.php | il y a 10 mois | |
| Connection.php | il y a 10 mois | |
| DebugAction.php | il y a 10 mois | |
| DebugPanel.php | il y a 10 mois | |
| ElasticsearchTarget.php | il y a 10 mois | |
| Exception.php | il y a 10 mois | |
| LICENSE.md | il y a 10 mois | |
| Query.php | il y a 10 mois | |
| QueryBuilder.php | il y a 10 mois | |
| README.md | il y a 10 mois | |
| composer.json | il y a 10 mois | |
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.
Depending on the version of Elasticsearch you are using you need a different version of this extension.
The preferred way to install this extension is through composer:
composer require --prefer-dist yiisoft/yii2-elasticsearch:"~2.1.0"
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
],
]
];