On Wed, Dec 28, 2011 at 5:47 AM, ku3ia <dem...@gmail.com> wrote: > So, based on p.2) and on my previous researches, I conclude, that the more > documents I want to retrieve, the slower is search and main problem is the > cycle in writeDocs method. Am I right? Can you advice something in this > situation?
For the first phase in a distributed search, Solr must return the top N ids (in your case 200). It currently does this by loading stored fields, which is slow. A better approach is to store the "id" field as a column stride field. https://issues.apache.org/jira/browse/SOLR-2753 -Yonik http://www.lucidimagination.com