| パッケージ | 説明 |
|---|---|
| org.elasticsearch.action.count |
Count action.
|
| org.elasticsearch.client |
The client module allowing to easily perform actions/operations.
|
| org.elasticsearch.client.support |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
protected CountRequest |
CountRequestBuilder.beforeExecute(CountRequest request)
非推奨です。
|
CountRequest |
CountRequest.minScore(float minScore)
非推奨です。
The minimum score of the documents to include in the count.
|
CountRequest |
CountRequest.preference(String preference)
非推奨です。
|
CountRequest |
CountRequest.routing(String... routings)
非推奨です。
The routing values to control the shards that the search will be executed on.
|
CountRequest |
CountRequest.routing(String routing)
非推奨です。
A comma separated list of routing values to control the shards the search will be executed on.
|
CountRequest |
CountRequest.source(byte[] querySource)
非推奨です。
The source to execute.
|
CountRequest |
CountRequest.source(byte[] querySource,
int offset,
int length)
非推奨です。
The source to execute.
|
CountRequest |
CountRequest.source(BytesReference querySource)
非推奨です。
|
CountRequest |
CountRequest.source(Map querySource)
非推奨です。
The source to execute in the form of a map.
|
CountRequest |
CountRequest.source(QuerySourceBuilder sourceBuilder)
非推奨です。
The source to execute.
|
CountRequest |
CountRequest.source(String querySource)
非推奨です。
The source to execute.
|
CountRequest |
CountRequest.source(XContentBuilder builder)
非推奨です。
|
CountRequest |
CountRequest.terminateAfter(int terminateAfterCount)
非推奨です。
Upon reaching
terminateAfter counts, the count request will early terminate |
CountRequest |
CountRequest.types(String... types)
非推奨です。
The types of documents the query will run against.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
protected CountRequest |
CountRequestBuilder.beforeExecute(CountRequest request)
非推奨です。
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static CountRequest |
Requests.countRequest(String... indices)
非推奨です。
use
Requests.searchRequest(String...) instead and set size to 0 |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
ActionFuture<CountResponse> |
Client.count(CountRequest request)
非推奨です。
use
Client.search(SearchRequest) instead and set size to 0 |
void |
Client.count(CountRequest request,
ActionListener<CountResponse> listener)
非推奨です。
use
Client.search(SearchRequest, ActionListener) instead and set size to 0 |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
ActionFuture<CountResponse> |
AbstractClient.count(CountRequest request) |
void |
AbstractClient.count(CountRequest request,
ActionListener<CountResponse> listener) |
Copyright © 2009–2016. All rights reserved.