RE: Using multiple filters

2008-01-03 Thread Rakesh Shete
Hey thanks Eric. This should help me. --Regards Rakesh S > Date: Thu, 3 Jan 2008 13:31:32 -0500 > From: [EMAIL PROTECTED] > To: java-user@lucene.apache.org > Subject: Re: Using multiple filters > > You have to put lucene-misc.jar (which you should have in your > lucene/c

Re: Using multiple filters

2008-01-03 Thread Erick Erickson
sc/ChainedFilter.html > > > > From: [EMAIL PROTECTED] > > To: java-user@lucene.apache.org > > Subject: RE: Using multiple filters > > Date: Thu, 3 Jan 2008 21:24:35 +0530 > > > > > > Hi Eric, Mark, > > > > I am using Lucene 2.2.0 and I d

RE: Using multiple filters

2008-01-03 Thread Rakesh Shete
Here is the link I found on googgling: http://lucene.apache.org/java/2_2_0/api/org/apache/lucene/misc/ChainedFilter.html > From: [EMAIL PROTECTED] > To: java-user@lucene.apache.org > Subject: RE: Using multiple filters > Date: Thu, 3 Jan 2008 21:24:35 +0530 > > > Hi

RE: Using multiple filters

2008-01-03 Thread Rakesh Shete
, Rakesh Shete > Date: Wed, 2 Jan 2008 20:50:28 + > From: [EMAIL PROTECTED] > To: java-user@lucene.apache.org > Subject: Re: Using multiple filters > > BooleanFilter in contrib is similar to ChainedFilter but just expresses > the boolean logic using the same vocab

Re: Using multiple filters

2008-01-02 Thread markharw00d
BooleanFilter in contrib is similar to ChainedFilter but just expresses the boolean logic using the same vocabulary as BooleanQuery ("should"s, "must"s and "not"s). Cheers Mark Erick Erickson wrote: I think you can just throw them all together in a ChainedFilter and use the ChainedFilter wher

Re: Using multiple filters

2008-01-02 Thread Erick Erickson
I think you can just throw them all together in a ChainedFilter and use the ChainedFilter wherever your calls want a Filter. But I haven't tried it ... Erick On Jan 2, 2008 2:28 PM, Rakesh Shete <[EMAIL PROTECTED]> wrote: > > Hi all, > > I have a query related to using filters. > > My search wo