On Thu, Aug 14, 2008 at 3:15 PM, Kevin Osborn <[EMAIL PROTECTED]> wrote: > The problem here is that the calls in SolrIndexSearcher don't appear to use > the QueryResultsCache if the filer is a DocSet rather than a List<Query>.
Right... using a DocSet as part of the cache key would be pretty slow (key comparisons) and more memory intensive. > Is it recomended to re-work the caches to return Query objects and use that > as my filterList? Yes, that should work. -Yonik