Add support for setting the boost to a text query in the Java client

This commit is contained in:
Nicolas Lalevée 2011-05-25 12:05:14 +02:00 committed by kimchy
parent b979af109c
commit a9452bd0e6
1 changed files with 13 additions and 0 deletions

View File

@ -59,6 +59,8 @@ public class TextQueryBuilder extends BaseQueryBuilder {
private String analyzer;
private Float boost;
private Integer slop;
private String fuzziness;
@ -100,6 +102,14 @@ public class TextQueryBuilder extends BaseQueryBuilder {
return this;
}
/**
* Set the boost to apply to the query.
*/
public TextQueryBuilder boost(float boost) {
this.boost = boost;
return this;
}
/**
* Set the phrase slop if evaluated to a phrase query type.
*/
@ -139,6 +149,9 @@ public class TextQueryBuilder extends BaseQueryBuilder {
if (analyzer != null) {
builder.field("analyzer", analyzer);
}
if (boost != null) {
builder.field("boost", boost);
}
if (slop != null) {
builder.field("slop", slop);
}