|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.elasticsearch.index.query.json.BaseJsonQueryBuilder
org.elasticsearch.index.query.json.MoreLikeThisFieldJsonQueryBuilder
public class MoreLikeThisFieldJsonQueryBuilder
A more like this query that runs against a specific field.
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface org.elasticsearch.util.json.ToJson |
---|
ToJson.MapParams, ToJson.Params |
Field Summary |
---|
Fields inherited from interface org.elasticsearch.util.json.ToJson |
---|
EMPTY_PARAMS |
Constructor Summary | |
---|---|
MoreLikeThisFieldJsonQueryBuilder(java.lang.String name)
A more like this query that runs against a specific field. |
Method Summary | |
---|---|
MoreLikeThisFieldJsonQueryBuilder |
boost(float boost)
|
MoreLikeThisFieldJsonQueryBuilder |
boostTerms(float boostTerms)
Sets the boost factor to use when boosting terms. |
protected void |
doJson(JsonBuilder builder,
ToJson.Params params)
|
MoreLikeThisFieldJsonQueryBuilder |
likeText(java.lang.String likeText)
The text to use in order to find documents that are "like" this. |
MoreLikeThisFieldJsonQueryBuilder |
maxDocFreq(int maxDocFreq)
Set the maximum frequency in which words may still appear. |
MoreLikeThisFieldJsonQueryBuilder |
maxQueryTerms(int maxQueryTerms)
Sets the maximum number of query terms that will be included in any generated query. |
MoreLikeThisFieldJsonQueryBuilder |
maxWordLen(int maxWordLen)
Sets the maximum word length above which words will be ignored. |
MoreLikeThisFieldJsonQueryBuilder |
minDocFreq(int minDocFreq)
Sets the frequency at which words will be ignored which do not occur in at least this many docs. |
MoreLikeThisFieldJsonQueryBuilder |
minTermFreq(int minTermFreqy)
The frequency below which terms will be ignored in the source doc. |
MoreLikeThisFieldJsonQueryBuilder |
minWordLen(int minWordLen)
Sets the minimum word length below which words will be ignored. |
MoreLikeThisFieldJsonQueryBuilder |
percentTermsToMatch(float percentTermsToMatch)
The percentage of terms to match. |
MoreLikeThisFieldJsonQueryBuilder |
stopWords(java.lang.String... stopWords)
Set the set of stopwords. |
Methods inherited from class org.elasticsearch.index.query.json.BaseJsonQueryBuilder |
---|
buildAsBytes, buildAsString, buildAsUnsafeChars, toJson |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MoreLikeThisFieldJsonQueryBuilder(java.lang.String name)
name
- The field name to run the query againstMethod Detail |
---|
public MoreLikeThisFieldJsonQueryBuilder likeText(java.lang.String likeText)
public MoreLikeThisFieldJsonQueryBuilder percentTermsToMatch(float percentTermsToMatch)
public MoreLikeThisFieldJsonQueryBuilder minTermFreq(int minTermFreqy)
public MoreLikeThisFieldJsonQueryBuilder maxQueryTerms(int maxQueryTerms)
public MoreLikeThisFieldJsonQueryBuilder stopWords(java.lang.String... stopWords)
Any word in this set is considered "uninteresting" and ignored. Even if your Analyzer allows stopwords, you might want to tell the MoreLikeThis code to ignore them, as for the purposes of document similarity it seems reasonable to assume that "a stop word is never interesting".
public MoreLikeThisFieldJsonQueryBuilder minDocFreq(int minDocFreq)
public MoreLikeThisFieldJsonQueryBuilder maxDocFreq(int maxDocFreq)
public MoreLikeThisFieldJsonQueryBuilder minWordLen(int minWordLen)
public MoreLikeThisFieldJsonQueryBuilder maxWordLen(int maxWordLen)
public MoreLikeThisFieldJsonQueryBuilder boostTerms(float boostTerms)
public MoreLikeThisFieldJsonQueryBuilder boost(float boost)
protected void doJson(JsonBuilder builder, ToJson.Params params) throws java.io.IOException
doJson
in class BaseJsonQueryBuilder
java.io.IOException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |