On 6/19/07, Henrib <[EMAIL PROTECTED]> wrote:
Is it reasonable to implement a RequestHandler that systematically uses a DocSet as a filter for the restriction queries?
How many unique keys would typically be used to construct the filter?
I'm under the impression that SolrIndexSearcher.getDocSet(Query, DocSet) would use the cache properly & that calling it in a loop would perform the 'and' between the filters...
Yes, but I wouldn't do that for each query unless each query was likely to have a different id list. There's also a getDocListAndSet that takes a List<Query> as a filter. -Yonik