All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.index.query.BoostableQueryBuilder Maven / Gradle / Ivy

There is a newer version: 8.14.1
Show newest version
package org.elasticsearch.index.query;

/**
 * Query builder which allow setting some boost
 */
public interface BoostableQueryBuilder> {

    /**
     * Sets the boost for this query.  Documents matching this query will (in addition to the normal
     * weightings) have their score multiplied by the boost provided.
     */
    public B boost(float boost);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy