Re: Getting more documents from resultsSet

2018-05-18 Thread Pratik Patel
Using cursor marker might help as explained in this documentation https://lucene.apache.org/solr/guide/6_6/pagination-of-results.html On Fri, May 18, 2018 at 4:13 PM, Deepak Goel wrote: > I wonder if in-memory-filesystem would help... > > On Sat, 19 May 2018, 01:03 Erick

Re: Getting more documents from resultsSet

2018-05-18 Thread Deepak Goel
I wonder if in-memory-filesystem would help... On Sat, 19 May 2018, 01:03 Erick Erickson, wrote: > If you only return fields that are docValue=true that'll largely > eliminate the disk seeks. 30 seconds does seem kind of excessive even > with disk seeks though. > >

Re: Getting more documents from resultsSet

2018-05-18 Thread Erick Erickson
If you only return fields that are docValue=true that'll largely eliminate the disk seeks. 30 seconds does seem kind of excessive even with disk seeks though. Here'r a reference: https://lucene.apache.org/solr/guide/6_6/docvalues.html Whenever I see anything like "...our business requirement

Getting more documents from resultsSet

2018-05-18 Thread root23
Hi all, I am working on Solr 6. Our business requirement is that we need to return 2000 docs for every query we execute. Now normally if i execute the same set to query with start=0 to rows=10. It returns very fast(event for our most complex queries in like less then 3 seconds). however the moment