SolrIndexSearcher getDocList signature
--------------------------------------
Key: SOLR-384
URL: https:
//issues.apache.org/jira/browse/SOLR-384
Project: Solr
Issue Type: Improvement
Affects Versions: 1.3
Reporter: Henri Biestro
Priority: Trivial
To complete the SolrIndexSearcher getDocList* series and
allow more flexibility in implementing RequestHandlers, it
would be nice to add:
public DocList getDocList(Query query, DocSet filter, Sort
lsort, int offset, int len, int flags) throws IOException {
DocListAndSet answer = new DocListAndSet();
getDocListC(answer,query,null,filter,lsort,offset,len,flags)
;
return answer.docList;
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue
online.
|