Uses of Class
org.elasticsearch.action.mlt.MoreLikeThisRequest

Packages that use MoreLikeThisRequest
org.elasticsearch.action.mlt More Like This action. 
org.elasticsearch.client The client module allowing to easily perform actions/operations. 
org.elasticsearch.client.support   
org.elasticsearch.client.transport   
 

Uses of MoreLikeThisRequest in org.elasticsearch.action.mlt
 

Methods in org.elasticsearch.action.mlt that return MoreLikeThisRequest
 MoreLikeThisRequest MoreLikeThisRequest.boostTerms(float boostTerms)
          The boost factor to use when boosting terms.
 MoreLikeThisRequest MoreLikeThisRequest.fields(String... fields)
          The fields of the document to use in order to find documents "like" this one.
 MoreLikeThisRequest MoreLikeThisRequest.id(String id)
          The id of document to load from which the "like" query will execute with.
 MoreLikeThisRequest MoreLikeThisRequest.maxDocFreq(int maxDocFreq)
          The maximum frequency in which words may still appear.
 MoreLikeThisRequest MoreLikeThisRequest.maxQueryTerms(int maxQueryTerms)
          The maximum number of query terms that will be included in any generated query.
 MoreLikeThisRequest MoreLikeThisRequest.maxWordLen(int maxWordLen)
          The maximum word length above which words will be ignored.
 MoreLikeThisRequest MoreLikeThisRequest.minDocFreq(int minDocFreq)
          The frequency at which words will be ignored which do not occur in at least this many docs.
 MoreLikeThisRequest MoreLikeThisRequest.minTermFreq(int minTermFreq)
          The frequency below which terms will be ignored in the source doc.
 MoreLikeThisRequest MoreLikeThisRequest.minWordLen(int minWordLen)
          The minimum word length below which words will be ignored.
 MoreLikeThisRequest MoreLikeThisRequest.percentTermsToMatch(float percentTermsToMatch)
          The percent of the terms to match for each field.
 MoreLikeThisRequest MoreLikeThisRequest.searchFrom(int from)
          From which search result set to return.
 MoreLikeThisRequest MoreLikeThisRequest.searchIndices(String... searchIndices)
          The indices the resulting mlt query will run against.
 MoreLikeThisRequest MoreLikeThisRequest.searchQueryHint(String searchQueryHint)
          Optional search query hint.
 MoreLikeThisRequest MoreLikeThisRequest.searchScroll(Scroll searchScroll)
          An optional search scroll request to be able to continue and scroll the search operation.
 MoreLikeThisRequest MoreLikeThisRequest.searchSize(int size)
          The number of documents to return, defaults to 10.
 MoreLikeThisRequest MoreLikeThisRequest.searchSource(byte[] searchSource)
          An optional search source request allowing to control the search request for the more like this documents.
 MoreLikeThisRequest MoreLikeThisRequest.searchSource(byte[] searchSource, int offset, int length, boolean unsafe)
          An optional search source request allowing to control the search request for the more like this documents.
 MoreLikeThisRequest MoreLikeThisRequest.searchSource(BytesReference searchSource, boolean unsafe)
          An optional search source request allowing to control the search request for the more like this documents.
 MoreLikeThisRequest MoreLikeThisRequest.searchSource(Map searchSource)
           
 MoreLikeThisRequest MoreLikeThisRequest.searchSource(SearchSourceBuilder sourceBuilder)
          An optional search source request allowing to control the search request for the more like this documents.
 MoreLikeThisRequest MoreLikeThisRequest.searchSource(String searchSource)
          An optional search source request allowing to control the search request for the more like this documents.
 MoreLikeThisRequest MoreLikeThisRequest.searchSource(XContentBuilder builder)
           
 MoreLikeThisRequest MoreLikeThisRequest.searchType(SearchType searchType)
          The search type of the mlt search query.
 MoreLikeThisRequest MoreLikeThisRequest.searchType(String searchType)
          The search type of the mlt search query.
 MoreLikeThisRequest MoreLikeThisRequest.searchTypes(String... searchTypes)
          The types the resulting mlt query will run against.
 MoreLikeThisRequest MoreLikeThisRequest.stopWords(String... stopWords)
          Any word in this set is considered "uninteresting" and ignored.
 MoreLikeThisRequest MoreLikeThisRequest.type(String type)
          The type of document to load from which the "like" query will execute with.
 

Methods in org.elasticsearch.action.mlt with parameters of type MoreLikeThisRequest
protected  void TransportMoreLikeThisAction.doExecute(MoreLikeThisRequest request, ActionListener<SearchResponse> listener)
           
 

Uses of MoreLikeThisRequest in org.elasticsearch.client
 

Methods in org.elasticsearch.client that return MoreLikeThisRequest
static MoreLikeThisRequest Requests.moreLikeThisRequest(String index)
          More like this request represents a request to search for documents that are "like" the provided (fetched) document.
 

Methods in org.elasticsearch.client with parameters of type MoreLikeThisRequest
 ActionFuture<SearchResponse> Client.moreLikeThis(MoreLikeThisRequest request)
          A more like this action to search for documents that are "like" a specific document.
 void Client.moreLikeThis(MoreLikeThisRequest request, ActionListener<SearchResponse> listener)
          A more like this action to search for documents that are "like" a specific document.
 

Uses of MoreLikeThisRequest in org.elasticsearch.client.support
 

Methods in org.elasticsearch.client.support with parameters of type MoreLikeThisRequest
 ActionFuture<SearchResponse> AbstractClient.moreLikeThis(MoreLikeThisRequest request)
           
 void AbstractClient.moreLikeThis(MoreLikeThisRequest request, ActionListener<SearchResponse> listener)
           
 

Uses of MoreLikeThisRequest in org.elasticsearch.client.transport
 

Methods in org.elasticsearch.client.transport with parameters of type MoreLikeThisRequest
 ActionFuture<SearchResponse> TransportClient.moreLikeThis(MoreLikeThisRequest request)
           
 void TransportClient.moreLikeThis(MoreLikeThisRequest request, ActionListener<SearchResponse> listener)
           
 



Copyright © 2009-2012. All Rights Reserved.