What about cursorMark? That's designed to handle repeated calls with increasing "start" parameters without bogging down.
https://lucene.apache.org/solr/guide/6_6/pagination-of-results.html Best, Erick On Fri, Jul 27, 2018 at 9:47 AM, Tom Burton-West <tburt...@umich.edu> wrote: > Thanks Joel, > > My use case is that I have a complex edismax query (example below) and the > user wants to download the set of *all* search results (ids and some small > metadata fields). So they don't need the relevance ranking. However, I > need to somehow get the exact set that the complex edismax query matched. > > Should I try to write some code to rewrite the logic of the edismax query > with a complex boolean query or would it make sense for me to look at > possibly modifying the export handler for my use case? > > Tom > > "q= _query_:"{!edismax > qf='ocr^50000+allfieldsProper^2+allfields^1+titleProper^50+title_topProper^30+title_restProper^15+title^10+title_top^5+title_rest^2+series^5+series2^5+author^80+author2^50+issn^1+isbn^1+oclc^1+sdrnum^1+ctrlnum^1+id^1+rptnum^1+topicProper^2+topic^1+hlb3^1+fullgeographic^1+fullgenre^1+era^1+' > pf='title_ab^10000+titleProper^1500+title_topProper^1000+title_restProper^800+series^100+series2^100+author^1600+author2^800+topicProper^200+fullgenre^200+hlb3^200+allfieldsProper^100+' > mm='100%25' tie='0.9' } European Art History" > > > On Thu, Jul 26, 2018 at 6:02 PM, Joel Bernstein <joels...@gmail.com> wrote: > >> The export handler doesn't allow sorting by score at this time. It only >> supports sorting on fields. So the edismax qparser won't cxcurrently work >> with the export handler. >> >> Joel Bernstein >> http://joelsolr.blogspot.com/ >> >> On Thu, Jul 26, 2018 at 5:52 PM, Tom Burton-West <tburt...@umich.edu> >> wrote: >> >> > Hello all, >> > >> > I am completely new to the export handler. >> > >> > Can the export handler be used with the edismax or dismax query handler? >> > >> > I tried using local params : >> > >> > q= _query_:"{!edismax qf='ocr^50000+allfields^1+titleProper^50' >> > mm='100%25' >> > tie='0.9' } art" >> > >> > which does not seem to be working. >> > >> > Tom >> > >>