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 982389B9D for ; Fri, 20 Apr 2012 12:23:05 +0000 (UTC) Received: (qmail 17543 invoked by uid 500); 20 Apr 2012 12:23:04 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 17257 invoked by uid 500); 20 Apr 2012 12:23:03 -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 17240 invoked by uid 99); 20 Apr 2012 12:23:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Apr 2012 12:23:03 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Apr 2012 12:23:01 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 29E0C41F92 for ; Fri, 20 Apr 2012 12:22:40 +0000 (UTC) Date: Fri, 20 Apr 2012 12:22:40 +0000 (UTC) From: "Robert Muir (Commented) (JIRA)" To: dev@lucene.apache.org Message-ID: <1435933574.9441.1334924560172.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <445245453.8987.1334910281865.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (LUCENE-4003) FieldCacheRewriteMethod.java is in tests 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-4003?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13258178#comment-13258178 ] Robert Muir commented on LUCENE-4003: ------------------------------------- Feel free to take this one Uwe! {quote} FieldCacheTermsFilter and also the TermsFilter in contrib can go away and we should instead use the sorted terms automaton (I always forget the name, Dawid, sorry) as a new AtomatonQuery subclass. {quote} That one should maybe be separated out... i could help some. Looking at the description of the thing, i think in some situations it could be a speedup (imagine some of the terms dont exist at all, etc). Also i wonder about the API, it could still have the current add() api, and do the sorting->automaton at the end (e.g. rewrite), but imo thats wasteful since the automaton is independent of the reader, so instead maybe it could take Term[] up front. Finally, a new expert ctor (maybe just protected) should be exposed to AutomatonQuery: currently you have: {code} public AutomatonQuery(final Term term, Automaton automaton) { super(term.field()); this.term = term; this.automaton = automaton; this.compiled = new CompiledAutomaton(automaton); } {code} But I would add AutomatonQuery(Term, Automaton, CompiledAutomaton), so that a subclass could pass an already-compiled automaton. This TermsFilter-query would use the alternative CompiledAutomaton ctor, passing true for finite, and false for simplify, since we know its finite and probably large (so simplification in general would hurt). > FieldCacheRewriteMethod.java is in tests > ---------------------------------------- > > Key: LUCENE-4003 > URL: https://issues.apache.org/jira/browse/LUCENE-4003 > Project: Lucene - Java > Issue Type: Bug > Reporter: selckin > > I believe FieldCacheRewriteMethod was accidentally moved to the wrong place in r1158697 and should be src/main and not in src/test. > Or is it something that you don't want people to use? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa 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