Query time is the time spent in Solr getting the search results. It does NOT include reading the bits off disk to assemble the response etc.
elapsed time is the time from when the query was sent to the time it gets back. It includes qtime, reading the bits off disk to assemble the response, transmission time, etc. Best, Erick On Mon, Oct 7, 2013 at 4:49 AM, Furkan KAMACI <furkankam...@gmail.com> wrote: > QueryResponse object at Solrj has two different methods for required time > for a given query. One of them is for *QTime(queryTime)* and the other one > is for *elapsedTime. *What are the differences between them and what > exactly for elapsedTime?