enrise/zf-elasticsearch
最新稳定版本:1.0.1
Composer 安装命令:
composer require enrise/zf-elasticsearch
包简介
A very simple but drop-in zf2 module for the elasticsearch client library.
README 文档
README
This repository contains a very simple but drop-in solution for using the elasticsearch client library in a ZF2 project.
The client is pre-configured with sensible defaults. You can further configure the client in the module config just as you would configure the elasticsearch client directly.
Usage example
$searchClient = $serviceLocator->get('elasticsearch'); $searchClient->search();
Installation
Require the module via composer:
$ composer require enrise/zf-elasticsearch
Load the module in your application:
// config/application.config.php return array( 'modules' => array( // ... 'Enrise\\ZfModule\\ElasticSearch', ) );
And you're done!
Configuration example
To fine-tune your installation you can tweak the elasticsearch client configuration. For example:
// In your config file return [ 'elasticsearch' => [ 'hosts' => [ 'es1.enrise.com', 'es2.enrise.com' ], 'logging' => true ] ];
Dependencies
elasticsearch/elasticsearch:^1.0
License
Please see the LICENSE file in this repository
Contributors
This zend framework module was made by Richard Tuin.
统计信息
- 总下载量: 4.47k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-04-04