On 6/18/07, Henrib <[EMAIL PROTECTED]> wrote:
Thanks Yonik; Let me twist the same question another way; I'm running Solr embedded, the uniqueKey set that pre-exists may be large, is per-query (most likely not useful to cache it) and is iterable. I'd rather avoid making a string to build the 'fq', get it parsed, etc. Would it be as safe & more efficient in a (custom) request handler to create a DocSet by fetching termDocs for each key used as a Term & use is as a filter?
Yes, that should work fine. Most of the savings will be avoiding the query parsing. -Yonik