Return-Path: Delivered-To: apmail-lucene-java-user-archive@www.apache.org Received: (qmail 95815 invoked from network); 14 Sep 2005 00:23:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 Sep 2005 00:23:00 -0000 Received: (qmail 31854 invoked by uid 500); 14 Sep 2005 00:22:55 -0000 Delivered-To: apmail-lucene-java-user-archive@lucene.apache.org Received: (qmail 31829 invoked by uid 500); 14 Sep 2005 00:22:55 -0000 Mailing-List: contact java-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-user@lucene.apache.org Delivered-To: mailing list java-user@lucene.apache.org Received: (qmail 31813 invoked by uid 99); 14 Sep 2005 00:22:55 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Sep 2005 17:22:55 -0700 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=HTML_30_40,HTML_MESSAGE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of jeff.rodenburg@gmail.com designates 64.233.184.200 as permitted sender) Received: from [64.233.184.200] (HELO wproxy.gmail.com) (64.233.184.200) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Sep 2005 17:23:05 -0700 Received: by wproxy.gmail.com with SMTP id 71so59390wri for ; Tue, 13 Sep 2005 17:22:49 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:references; b=uqFvNzLKEq+jE8q7WzMP3rurtP2+ZQF5y0t9pE7HZ/qzLiOwFzvWxbFf/cQXwuCa4yRnpsN053ER93hftximAF188P3h7gEfjKQjq7L6mIQ/x0rnWDD528Afjq2sY4wqT4noTrHvVgVEfAUK4XE9xOL7+CMrbP5u7XAIjQhr2Zo= Received: by 10.54.77.12 with SMTP id z12mr900909wra; Tue, 13 Sep 2005 17:22:49 -0700 (PDT) Received: by 10.54.13.32 with HTTP; Tue, 13 Sep 2005 17:22:49 -0700 (PDT) Message-ID: <50f43336050913172248872b55@mail.gmail.com> Date: Tue, 13 Sep 2005 17:22:49 -0700 From: Jeff Rodenburg Reply-To: jeff.rodenburg@gmail.com To: Chris Hostetter Subject: Re: Hits issue or custom filter issue? Cc: java-user@lucene.apache.org In-Reply-To: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_6143_5165059.1126657369810" References: <50f43336050913162359cf6377@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_6143_5165059.1126657369810 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Might be the same issue, haven't been able to determine during a=20 step-through on the code exec. You're right, no need to add a new FilteredQuery to the statement, just a= =20 search on combinedQuery with a new myCustomFilter. Unfortunately, no joy; same response. -- j On 9/13/05, Chris Hostetter wrote: >=20 >=20 > : Hits h1 =3D oMultiSearcher.Search(new FilteredQuery(combinedQuery, new > : myCustomFilter(1))); > : Hits h2 =3D oMultiSearcher.Search(new FilteredQuery(combinedQuery, new > : myCustomFilter(2))); >=20 > ...do you get the same results if you use... >=20 > Hits h1 =3D oMultiSearcher.search(combinedQuery, myCustomFilter(1)); > Hits h2 =3D oMultiSearcher.search(combinedQuery, myCustomFilter(2)); >=20 > ...I'm not sure why you wouldn't use that method call instead anyway. >=20 > This may be another sympton of a bug that worked in the trunk when i > reported it... >=20 > http://issues.apache.org/jira/secure/ViewIssue.jspa?key=3DLUCENE-366 >=20 >=20 >=20 > -Hoss >=20 > ------=_Part_6143_5165059.1126657369810--