On Dec 27, 2007 9:45 AM, Britske <[EMAIL PROTECTED]> wrote: > I am using SolrJ to communicate with SOLR. My Solr-queries perform within > range (between 50 ms and 300 ms) by looking at the solr log as ouputted on > my (windows) commandline. > > However I discovered that the following command at all times takes > significantly longer than the number outputted in the solr-log, (sometimes > about 400% longer):
It's probably due to stored field retrieval. The time in the response includes everything except the time to write the response (since it appears at the beginning). Writing the response involves reading the stored fields of documents (this was done to allow one to stream a large number of documents w/o having them all in memory). SolrJ's parsing of the response should be a relatively small constant cost. -Yonik