: Where would this go in the code? I want to add a new XML based request : handler so that spans and range filters can be handled. Thanks.
Since RangeFilter is included in lucene 1.9 (as is SpanQuery) it's automatically inlcuded in Solr .. in fact, the default SolrQueryParser (used by the StandardRequestHandler) automaiclaly uses COnstantScoreRangeQuery (a thin wrapper arround RangeFilter) instead of RangeQuery. -Hoss