Class LegacyNumericRangeQuery<T extends Number>
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.search.MultiTermQuery
-
- org.apache.solr.legacy.LegacyNumericRangeQuery<T>
-
@Deprecated public final class LegacyNumericRangeQuery<T extends Number> extends org.apache.lucene.search.MultiTermQuery
Deprecated.Instead index withIntPoint
,LongPoint
,FloatPoint
,DoublePoint
, and create range queries withIntPoint.newRangeQuery()
,LongPoint.newRangeQuery()
,FloatPoint.newRangeQuery()
,DoublePoint.newRangeQuery()
respectively. SeePointValues
for background information on Points.AQuery
that matches numeric values within a specified range. To use this, you must first index the numeric values usingLegacyIntField
,LegacyFloatField
,LegacyLongField
orLegacyDoubleField
(expert:LegacyNumericTokenStream
). If your terms are instead textual, you should useTermRangeQuery
.You create a new LegacyNumericRangeQuery with the static factory methods, eg:
Query q = LegacyNumericRangeQuery.newFloatRange("weight", 0.03f, 0.10f, true, true);
matches all documents whose float valued "weight" field ranges from 0.03 to 0.10, inclusive.The performance of LegacyNumericRangeQuery is much better than the corresponding
TermRangeQuery
because the number of terms that must be searched is usually far fewer, thanks to trie indexing, described below.You can optionally specify a
precisionStep
when creating this query. This is necessary if you've changed this configuration from its default (4) during indexing. Lower values consume more disk space but speed up searching. Suitable values are between 1 and 8. A good starting point to test is 4, which is the default value for allNumeric*
classes. See below for details.This query defaults to MultiTermQuery.CONSTANT_SCORE_REWRITE. With precision steps of ≤4, this query can be run with one of the BooleanQuery rewrite methods without changing BooleanQuery's default max clause count.
How it works
See the publication about panFMP, where this algorithm was described (referred to as
TrieRangeQuery
):Schindler, U, Diepenbroek, M, 2008. Generic XML-based Framework for Metadata Portals. Computers & Geosciences 34 (12), 1947-1955. doi:10.1016/j.cageo.2008.02.023
A quote from this paper: Because Apache Lucene is a full-text search engine and not a conventional database, it cannot handle numerical ranges (e.g., field value is inside user defined bounds, even dates are numerical values). We have developed an extension to Apache Lucene that stores the numerical values in a special string-encoded format with variable precision (all numerical values like doubles, longs, floats, and ints are converted to lexicographic sortable string representations and stored with different precisions (for a more detailed description of how the values are stored, see
LegacyNumericUtils
). A range is then divided recursively into multiple intervals for searching: The center of the range is searched only with the lowest possible precision in the trie, while the boundaries are matched more exactly. This reduces the number of terms dramatically.For the variant that stores long values in 8 different precisions (each reduced by 8 bits) that uses a lowest precision of 1 byte, the index contains only a maximum of 256 distinct values in the lowest precision. Overall, a range could consist of a theoretical maximum of
7*255*2 + 255 = 3825
distinct terms (when there is a term for every distinct value of an 8-byte-number in the index and the range covers almost all of them; a maximum of 255 distinct values is used because it would always be possible to reduce the full 256 values to one term with degraded precision). In practice, we have seen up to 300 terms in most cases (index with 500,000 metadata records and a uniform value distribution).Precision Step
You can choose any
precisionStep
when encoding values. Lower step values mean more precisions and so more terms in index (and index gets larger). The number of indexed terms per value is (those are generated byLegacyNumericTokenStream
):indexedTermsPerValue = ceil(bitsPerValue / precisionStep) As the lower precision terms are shared by many values, the additional terms only slightly grow the term dictionary (approx. 7% for
precisionStep=4
), but have a larger impact on the postings (the postings file will have more entries, as every document is linked toindexedTermsPerValue
terms instead of one). The formula to estimate the growth of the term dictionary in comparison to one term per value:On the other hand, if the
precisionStep
is smaller, the maximum number of terms to match reduces, which optimizes query speed. The formula to calculate the maximum number of terms that will be visited while executing the query is:For longs stored using a precision step of 4,
maxQueryTerms = 15*15*2 + 15 = 465
, and for a precision step of 2,maxQueryTerms = 31*3*2 + 3 = 189
. But the faster search speed is reduced by more seeking in the term enum of the index. Because of this, the idealprecisionStep
value can only be found out by testing. Important: You can index with a lower precision step value and test search speed using a multiple of the original step value.Good values for
precisionStep
are depending on usage and data type:- The default for all data types is 4, which is used, when no
precisionStep
is given. - Ideal value in most cases for 64 bit data types (long, double) is 6 or 8.
- Ideal value in most cases for 32 bit data types (int, float) is 4.
- For low cardinality fields larger precision steps are good. If the cardinality is < 100,
it is fair to use
Integer.MAX_VALUE
(see below). - Steps ≥64 for long/double and ≥32 for int/float
produces one token per value in the index and querying is as slow as a conventional
TermRangeQuery
. But it can be used to produce fields, that are solely used for sorting (in this case simply useInteger.MAX_VALUE
asprecisionStep
). UsingLegacyIntField
,LegacyLongField
,LegacyFloatField
orLegacyDoubleField
for sorting is ideal, because building the field cache is much faster than with text-only numbers. These fields have one term per value and therefore also work with term enumeration for building distinct lists (e.g. facets / preselected values to search for). Sorting is also possible with range query optimized fields using one of the aboveprecisionSteps
.
Comparisons of the different types of RangeQueries on an index with about 500,000 docs showed that
TermRangeQuery
in boolean rewrite mode (with raisedBooleanQuery
clause count) took about 30-40 secs to complete,TermRangeQuery
in constant score filter rewrite mode took 5 secs and executing this class took <100ms to complete (on an Opteron64 machine, Java 1.5, 8 bit precision step). This query type was developed for a geographic portal, where the performance for e.g. bounding boxes or exact date/time stamps is important.- Since:
- 2.9
- The default for all data types is 4, which is used, when no
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.search.MultiTermQuery
org.apache.lucene.search.MultiTermQuery.RewriteMethod, org.apache.lucene.search.MultiTermQuery.TopTermsBlendedFreqScoringRewrite, org.apache.lucene.search.MultiTermQuery.TopTermsBoostOnlyBooleanQueryRewrite, org.apache.lucene.search.MultiTermQuery.TopTermsScoringBooleanQueryRewrite
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(Object o)
Deprecated.T
getMax()
Deprecated.Returns the upper value of this range queryT
getMin()
Deprecated.Returns the lower value of this range queryint
getPrecisionStep()
Deprecated.Returns the precision step.protected org.apache.lucene.index.TermsEnum
getTermsEnum(org.apache.lucene.index.Terms terms, org.apache.lucene.util.AttributeSource atts)
Deprecated.int
hashCode()
Deprecated.boolean
includesMax()
Deprecated.Returnstrue
if the upper endpoint is inclusiveboolean
includesMin()
Deprecated.Returnstrue
if the lower endpoint is inclusivestatic LegacyNumericRangeQuery<Double>
newDoubleRange(String field, int precisionStep, Double min, Double max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries adouble
range using the givenprecisionStep
.static LegacyNumericRangeQuery<Double>
newDoubleRange(String field, Double min, Double max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries adouble
range using the defaultprecisionStep
LegacyNumericUtils.PRECISION_STEP_DEFAULT
(16).static LegacyNumericRangeQuery<Float>
newFloatRange(String field, int precisionStep, Float min, Float max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries afloat
range using the givenprecisionStep
.static LegacyNumericRangeQuery<Float>
newFloatRange(String field, Float min, Float max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries afloat
range using the defaultprecisionStep
LegacyNumericUtils.PRECISION_STEP_DEFAULT_32
(8).static LegacyNumericRangeQuery<Integer>
newIntRange(String field, int precisionStep, Integer min, Integer max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries aint
range using the givenprecisionStep
.static LegacyNumericRangeQuery<Integer>
newIntRange(String field, Integer min, Integer max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries aint
range using the defaultprecisionStep
LegacyNumericUtils.PRECISION_STEP_DEFAULT_32
(8).static LegacyNumericRangeQuery<Long>
newLongRange(String field, int precisionStep, Long min, Long max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries along
range using the givenprecisionStep
.static LegacyNumericRangeQuery<Long>
newLongRange(String field, Long min, Long max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries along
range using the defaultprecisionStep
LegacyNumericUtils.PRECISION_STEP_DEFAULT
(16).String
toString(String field)
Deprecated.void
visit(org.apache.lucene.search.QueryVisitor visitor)
Deprecated.-
Methods inherited from class org.apache.lucene.search.MultiTermQuery
getField, getRewriteMethod, getTermsCount, getTermsEnum, rewrite, setRewriteMethod
-
-
-
-
Method Detail
-
newLongRange
public static LegacyNumericRangeQuery<Long> newLongRange(String field, int precisionStep, Long min, Long max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries along
range using the givenprecisionStep
. You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting the min or max value tonull
. By setting inclusive to false, it will match all documents excluding the bounds, with inclusive on, the boundaries are hits, too.
-
newLongRange
public static LegacyNumericRangeQuery<Long> newLongRange(String field, Long min, Long max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries along
range using the defaultprecisionStep
LegacyNumericUtils.PRECISION_STEP_DEFAULT
(16). You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting the min or max value tonull
. By setting inclusive to false, it will match all documents excluding the bounds, with inclusive on, the boundaries are hits, too.
-
newIntRange
public static LegacyNumericRangeQuery<Integer> newIntRange(String field, int precisionStep, Integer min, Integer max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries aint
range using the givenprecisionStep
. You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting the min or max value tonull
. By setting inclusive to false, it will match all documents excluding the bounds, with inclusive on, the boundaries are hits, too.
-
newIntRange
public static LegacyNumericRangeQuery<Integer> newIntRange(String field, Integer min, Integer max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries aint
range using the defaultprecisionStep
LegacyNumericUtils.PRECISION_STEP_DEFAULT_32
(8). You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting the min or max value tonull
. By setting inclusive to false, it will match all documents excluding the bounds, with inclusive on, the boundaries are hits, too.
-
newDoubleRange
public static LegacyNumericRangeQuery<Double> newDoubleRange(String field, int precisionStep, Double min, Double max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries adouble
range using the givenprecisionStep
. You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting the min or max value tonull
.Double.NaN
will never match a half-open range, to hitNaN
use a query withmin == max == Double.NaN
. By setting inclusive to false, it will match all documents excluding the bounds, with inclusive on, the boundaries are hits, too.
-
newDoubleRange
public static LegacyNumericRangeQuery<Double> newDoubleRange(String field, Double min, Double max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries adouble
range using the defaultprecisionStep
LegacyNumericUtils.PRECISION_STEP_DEFAULT
(16). You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting the min or max value tonull
.Double.NaN
will never match a half-open range, to hitNaN
use a query withmin == max == Double.NaN
. By setting inclusive to false, it will match all documents excluding the bounds, with inclusive on, the boundaries are hits, too.
-
newFloatRange
public static LegacyNumericRangeQuery<Float> newFloatRange(String field, int precisionStep, Float min, Float max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries afloat
range using the givenprecisionStep
. You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting the min or max value tonull
.Float.NaN
will never match a half-open range, to hitNaN
use a query withmin == max == Float.NaN
. By setting inclusive to false, it will match all documents excluding the bounds, with inclusive on, the boundaries are hits, too.
-
newFloatRange
public static LegacyNumericRangeQuery<Float> newFloatRange(String field, Float min, Float max, boolean minInclusive, boolean maxInclusive)
Deprecated.Factory that creates aLegacyNumericRangeQuery
, that queries afloat
range using the defaultprecisionStep
LegacyNumericUtils.PRECISION_STEP_DEFAULT_32
(8). You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting the min or max value tonull
.Float.NaN
will never match a half-open range, to hitNaN
use a query withmin == max == Float.NaN
. By setting inclusive to false, it will match all documents excluding the bounds, with inclusive on, the boundaries are hits, too.
-
getTermsEnum
protected org.apache.lucene.index.TermsEnum getTermsEnum(org.apache.lucene.index.Terms terms, org.apache.lucene.util.AttributeSource atts) throws IOException
Deprecated.- Specified by:
getTermsEnum
in classorg.apache.lucene.search.MultiTermQuery
- Throws:
IOException
-
includesMin
public boolean includesMin()
Deprecated.Returnstrue
if the lower endpoint is inclusive
-
includesMax
public boolean includesMax()
Deprecated.Returnstrue
if the upper endpoint is inclusive
-
getMin
public T getMin()
Deprecated.Returns the lower value of this range query
-
getMax
public T getMax()
Deprecated.Returns the upper value of this range query
-
getPrecisionStep
public int getPrecisionStep()
Deprecated.Returns the precision step.
-
toString
public String toString(String field)
Deprecated.- Specified by:
toString
in classorg.apache.lucene.search.Query
-
equals
public final boolean equals(Object o)
Deprecated.- Overrides:
equals
in classorg.apache.lucene.search.MultiTermQuery
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCode
in classorg.apache.lucene.search.MultiTermQuery
-
visit
public void visit(org.apache.lucene.search.QueryVisitor visitor)
Deprecated.- Specified by:
visit
in classorg.apache.lucene.search.Query
-
-