thelhc/cloud-search-query
Composer 安装命令:
composer require thelhc/cloud-search-query
包简介
An ORM-like wrapper for building AWS CloudSearch structured queries
README 文档
README
An ORM-like wrapper for building AWS CloudSearch structured queries
Installation
CloudSearchQuery is currently a repository package only. In composer.json add:
"repositories": [
{
"type": "vcs",
"url": "https://github.com/aaronkaz/cloud-search-query.git"
}
],
"require": {
"aaron-kaz/cloud-search-query": "dev-master"
},
Basic Usage
Initialize a query object with a valid CloudSearch full URI endpoint
$query = new CloudSearchQuery([
'endpoint' => 'http://search-yourdomain.us-east-1.cloudsearch.amazonaws.com'
]);
You can chain query methods like so
$query->phrase('ford')
->term('National Equipment', 'seller')
->range('year', '1987');
use the get() method to submit query and retrieve results from AWS. Use property accessors on the returned results object.
$results = $query->get();
$matchedDocuments = $results->hits;
Search Query Operators and Nested Queries
You can use the and, or, and not operators to build compound and nested queries.
The corresponding and(), or(), and not() methods expect a closure as their argument.
You can chain all available methods as well nest more subqueries inside of closures.
$query->or(function($builder) {
$builder->phrase('ford')
->phrase('truck');
})
统计信息
- 总下载量: 11.94k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2016-12-14