Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a 9Gb index and when I update the index (with delta-import or via xml), the first query is always very slow.

I have FastLRUCache and a newSearcher query configured (it's launched according to the log), but still have slowness in the first query.

How can I debug the source of this slowness?

share|improve this question

1 Answer

up vote 1 down vote accepted

The problem was that the newSearcher query not have a the facet field that was in the application query, so Solr have to do the query always.

The solution was to add this facet.field to the newSearcher in solrconfig.xml

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.