Rubber.DSL.Query.FilteredQueryBuilder.Boost C# (CSharp) Method

Boost() public method

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 Boost ( float boost ) : FilteredQueryBuilder
boost float
return FilteredQueryBuilder
        public FilteredQueryBuilder Boost(float boost)
        {
            _boost = boost;
            return this;
        }