Class AllTermsSingleFieldElasticsearchSearchStrategy
java.lang.Object
io.jmix.search.searching.impl.AbstractSearchStrategy
io.jmix.searchelasticsearch.searching.strategy.impl.AllTermsSingleFieldElasticsearchSearchStrategy
- All Implemented Interfaces:
SearchStrategy,ElasticsearchSearchStrategy
@Component("search_AllTermsSingleFieldElasticsearchSearchStrategy")
public class AllTermsSingleFieldElasticsearchSearchStrategy
extends AbstractSearchStrategy
implements ElasticsearchSearchStrategy
Describes
SearchStrategy that searches documents with at least one field matches all input terms in any order.
Fields with partial match a not suitable.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidconfigureRequest(co.elastic.clients.elasticsearch.core.SearchRequest.Builder requestBuilder, SearchContext searchContext) Configures ElasticsearchSearchRequest.getName()Provides the name of this search strategy.Methods inherited from class io.jmix.search.searching.impl.AbstractSearchStrategy
toString
-
Constructor Details
-
AllTermsSingleFieldElasticsearchSearchStrategy
public AllTermsSingleFieldElasticsearchSearchStrategy()
-
-
Method Details
-
getName
Description copied from interface:SearchStrategyProvides the name of this search strategy. Name should be unique among all search strategies in application.- Specified by:
getNamein interfaceSearchStrategy- Returns:
- name
-
configureRequest
public void configureRequest(co.elastic.clients.elasticsearch.core.SearchRequest.Builder requestBuilder, SearchContext searchContext) Description copied from interface:ElasticsearchSearchStrategyConfigures ElasticsearchSearchRequest.The main step - create appropriate query based on provided
SearchContextand set it to request.Configuration of another request parameters is optional.
Highlighting, size and offset shouldn't be configured here - these parameters will be overwritten.
- Specified by:
configureRequestin interfaceElasticsearchSearchStrategy- Parameters:
requestBuilder- allows to configure search requestsearchContext- contains details about search being performed
-