yiisoft/yii2-elasticsearch
最新稳定版本:2.1.5
Composer 安装命令:
composer require yiisoft/yii2-elasticsearch
包简介
Elasticsearch integration and ActiveRecord for the Yii framework
README 文档
README
Elasticsearch Query and ActiveRecord for Yii 2
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
- PHP 7.3 or higher.
Depending on the version of Elasticsearch you are using you need a different version of this extension.
- For Elasticsearch 1.6.0 to 1.7.6 use extension version 2.0.x
- For Elasticsearch 5.x or above use extension version 2.1.x
Installation
The preferred way to install this extension is through composer:
composer require --prefer-dist yiisoft/yii2-elasticsearch:"~2.1.0"
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 ], 'dslVersion' => 7, // default is 5 ], ] ];
统计信息
- 总下载量: 1.78M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 436
- 点击次数: 1
- 依赖项目数: 28
- 推荐数: 1
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2013-11-26