On 6/7/07, Michael Thessel <[EMAIL PROTECTED]> wrote:
Is there a general speed problem with range searches in solr? It looks a bit 
strange for me, that a query for a term takes 5 ms while adding a filter to the 
same resultset takes 80s?

It's completely dependent on the number of terms in the range.
The unit of indexing in lucene is the term, so finding docs for a
single term is fast.
There are many terms in a range though.

The algorithm is simply:
for every term in the range: collect the docs for that term

-Yonik

Reply via email to