Re: solr query time

2016-09-07 Thread Emir Arnautovic
Hi Kshitij, Query time depends on query parameters, number of docs matched, collection size, index size on disk, resources available and caches. Number of fields per doc will results in index being bigger on disk, but assuming there are enough resources - mainly RAM for OS caches - that shou

Re: solr query time

2008-04-14 Thread neil22
Thanks for the info. Is the whole result set read into memory meaning that the number of matches I can have have for a query is limited by my machine's memory? Otis Gospodnetic wrote: > > Hi, > rows=N param just tells Solr how many top N results to return. Solr (and > Lucene, really) still n

Re: solr query time

2008-04-14 Thread Otis Gospodnetic
Hi, rows=N param just tells Solr how many top N results to return. Solr (and Lucene, really) still needs to find all documents that match the query and then score them (and optionally sort them). The more documents and matches you have, the more time the query will take. Otis -- Sematext --