Hi,

I'm working on a request handler pluging that needs to use a DocSet filter
(for distance limiting) as well as a list of filter queries to filter down a
search.  I'm trying to figure out how to best pass that to the
SolrIndexSearcher.

There's a method that takes a DocSet filter, and method that takes a
List<Query> filterList, but none that take both.  I was thinking I could
convert the filterList to a DocSet and intersect it with the filter, but the
method that does that well getDocSet(List<Query> queries) is protected
access.

Any ideas?

Also, it looks that the getDocListC method, which takes both filter and
filterList, actually uses both if it decides to use the filterCache, but
only uses one of the two if it takes the else block.  Is that by design?

Thanks,
Doug
-- 
View this message in context: 
http://www.nabble.com/Getting-a-DocSet-with-a-filter-and-filterList-tf4681959.html#a13378896
Sent from the Solr - Dev mailing list archive at Nabble.com.


Reply via email to