Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ElasticSearchは初めてです。検索キーワードのすべての検索結果を取得する方法はありますか?Elastic Searchは10に制限されています。そうでない場合、サイズを設定できますが、サイズを取得する必要がありますか?
はい、検索結果のデフォルト数は10です。
クエリにパラメータを設定sizeする必要があります。
size
「すべての結果」とは言えませんが、常にサイズ制限が必要です。
JAVA API を使用すると、SearchResponse から総ヒット数を簡単に取得できます。
SearchRequestBuilder srb = .. SearchResponse sr = srb.execute().actionGet(); long totalHits = sr.getHits().getTotalHits();