On 4/27/06, jason rutherglen <[EMAIL PROTECTED]> wrote:
Are you saying that ConstantScoreRangeQuery is interpreted by the IndexSearcher to be the same as a filter?
A filter is a constraint that can also be represented as a part of a query. field1:term1 field2:term2 filtered by field3:[a TO b] can be transformed to +(field1:term1 field2:term2) +field3:[a TO b]^0 -Yonik