You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-dev@lucene.apache.org by "Henri Biestro (JIRA)" <ji...@apache.org> on 2007/10/19 16:33:51 UTC

[jira] Closed: (SOLR-384) SolrIndexSearcher getDocList signature

     [ https://issues.apache.org/jira/browse/SOLR-384?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Henri Biestro closed SOLR-384.
------------------------------

    Resolution: Incomplete

After considering more carefully SolrIndexSearcher behaviors wrt filters, this is not a good idea.
The origin was to enable externally defined document filters and these should probably fold within SOLR-281.

> 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.