Unique results in BooleanQuery

2008-12-16 Thread Jay Malaluan
Hi, Anyone knowledgeable on how to get unique hits using the BooleanQuery? If I have 2 queries so the when the 1st query is processed then the 2nd query will not anymore return the same results from the 1st query. Regards, Jay Malaluan -- View this message in context: http://www.nabble.com

Stemming behavior

2008-12-19 Thread Jay Malaluan
d thing is loveliness is stemmed to "loveli" and loveless is not stemmed at all. Does anyone already encountered this and have suggestions on other Analyzers? Regards, Jay Malaluan -- View this message in context: http://www.nabble.com/Stemming-behavior-tp21089115p21089115.html Sent fr

Re: Crawler

2009-01-29 Thread Jay Malaluan
Hi, You can check out Nutch at http://lucene.apache.org/nutch/. Regards, Jay Joel Malaluan Haroldo Nascimento-2 wrote: > > > Hi, > > There is any crawler that integrate with index lucene ? > > Thanks > > Haroldo >

Re: TopDocCollector vs Hits inquiry

2009-02-04 Thread Jay Malaluan
Hi, As I was reading the post "Re: TopDocCollector vs Hits: TopDocCollector slowing", I just got curious on how he explained his change from Hits to TopDocCollector. I'm assuming that the Hits is returned from a call of: Searcher searcher = new Searcher(); searcher.search(xxx, xxx) - that wil

Re: TopDocCollector vs Hits inquiry

2009-02-05 Thread Jay Malaluan
ngersoll-6 wrote: > > http://lucene.apache.org/java/2_4_0/api/core/org/apache/lucene/search/Searcher.html#search(org.apache.lucene.search.Query,%20org.apache.lucene.search.HitCollector) > > The TopDocCollector is a HitCollector. > > On Feb 4, 2009, at 10:34 PM, Jay Malaluan wr