Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8821DD6D4 for ; Sun, 10 Feb 2013 06:15:16 +0000 (UTC) Received: (qmail 42550 invoked by uid 500); 10 Feb 2013 06:15:15 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 42497 invoked by uid 500); 10 Feb 2013 06:15:14 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 42440 invoked by uid 99); 10 Feb 2013 06:15:12 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Feb 2013 06:15:12 +0000 Date: Sun, 10 Feb 2013 06:15:12 +0000 (UTC) From: "Shai Erera (JIRA)" To: dev@lucene.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (LUCENE-4750) Convert DrillDown to DrillDownQuery MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LUCENE-4750?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shai Erera updated LUCENE-4750: ------------------------------- Attachment: LUCENE-4750.patch Thanks Mike, I added another ctor which doesn't take a base query and noted the "pure browsing" behavior if you pass null to the 2nd ctor. I think that's ready, I'll commit shortly. > Convert DrillDown to DrillDownQuery > ----------------------------------- > > Key: LUCENE-4750 > URL: https://issues.apache.org/jira/browse/LUCENE-4750 > Project: Lucene - Core > Issue Type: Improvement > Components: modules/facet > Reporter: Shai Erera > Assignee: Michael McCandless > Attachments: LUCENE-4750.patch, LUCENE-4750.patch, LUCENE-4750.patch > > > DrillDown is a utility class for creating drill-down queries over a base query and a bunch of categories. We've been asked to support AND, OR and AND of ORs. The latter is not so simple as a static utility method though, so instead we have some sample code ... > Rather, I think that we can just create a DrillDownQuery (extends Query) which takes a baseQuery in its ctor and exposes add(CategoryPath...), such that every such group of categories is AND'ed with other groups, and internally they are OR'ed. It's very similar to how you would construct a BooleanQuery, only simpler and specific to facets. > Internally, it would build a BooleanQuery and delegate rewrite, createWeight etc to it. > That will remove the need for the static utility methods .. or we can keep static term() for convenience. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org