Re: IndexWriter.close() no longer seems to close everything

2009-11-13 Thread Albert Juhe
uot; Lucene. Can you try to narrow this to a standalone > test case, too? > > Thanks. > > Mike > > On Fri, Nov 13, 2009 at 5:12 AM, Albert Juhe wrote: >> >> Hi, >> >> About this problem I did a test yesterday, I did a downgrade, I changed >&g

Re: IndexWriter.close() no longer seems to close everything

2009-11-13 Thread Albert Juhe
n Rutherglen-2 wrote: > > If there's a bug you're seeing, it's helpful to open an issue and post > code reproducing it. > > On Wed, Nov 11, 2009 at 3:41 AM, Albert Juhe wrote: >> >> I think that this is the best way to proceed. >> >> thank y

Re: IndexWriter.close() no longer seems to close everything

2009-11-11 Thread Albert Juhe
I think that this is the best way to proceed. thank you Mike Michael McCandless-2 wrote: > > Can you narrow the leak down to a small self-contained test? > > Mike > > On Wed, Nov 11, 2009 at 5:54 AM, Albert Juhe wrote: >> >> I don't get any exception. &g

Re: IndexWriter.close() no longer seems to close everything

2009-11-11 Thread Albert Juhe
one > that had opened it). > > Mike > > On Wed, Nov 11, 2009 at 5:10 AM, Albert Juhe wrote: >> >> I don't know if it's the same problem but I think it's similar, >> >> My problem is with the Indexsearcher. I've installed a web

Re: IndexWriter.close() no longer seems to close everything

2009-11-11 Thread Albert Juhe
have the same problem with IndexSearch or is only with IndexWriter? Albert Juhe Learning Technologies Universitat Oberta de Catalunya Michael McCandless-2 wrote: > > Does this look like a real leak John? You're definitely closing every > reader you get back from getReader? >

Re: FIltering with booleanFilter

2008-11-27 Thread Albert Juhe
: > > hits = searcher.search(multiSearchQuery,*finalFilter*, Sort.RELEVANCE); > > > Hope this helps. > > Prabin > toostep.com > > On Wed, Nov 26, 2008 at 2:04 PM, Albert Juhe <[EMAIL PROTECTED]> wrote: > >> >> If I use MUST, the se

Re: FIltering with booleanFilter

2008-11-26 Thread Albert Juhe
If I use MUST, the sentence will be Code1 AND Code2 AND Code3. I would like Code1 OR Code2 OR Code3. Each document have only one code. Ian Lea wrote: > > Hi > > > Do you maybe need MUST rather than SHOULD? > > > -- > Ian. > > > On Tue, Nov 25, 2

FIltering with booleanFilter

2008-11-25 Thread Albert Juhe
Hi, I'm trying to use the boolean filter, because after a search I want to show documents with a determinate code. codisFiltre="XX07_04141_00853#XX06_03002_00852#UX06_07019_02994" String[] codi =codisFiltre.split('#'); booleanFilter = new BooleanFilter(); for (int i = 0; i < codi.length

Re: wizard for search in Lucene

2008-10-31 Thread Albert Juhe
g/hudson/job/Lucene-trunk/javadoc//org/apache/lucene/search/similar/MoreLikeThis.html > > I couldn't really see how you would autocomplete after the word history > without listing a bunch of un-interesting terms as suggestions... But i > might be wrong... Of course, if it was autocom

Re: Any Spanish analyzer available?

2008-10-31 Thread Albert Juhe
Hi, Actually I'm using a Spanish analyzer for my search engine, I don't know if it's the best, but its useful for my purpose. http://www.nabble.com/file/p20265229/SpanishAnalyzer.java SpanishAnalyzer.java http://www.nabble.com/file/p20265229/SpanishStemFilter.java SpanishStemFilter.java http:/

wizard for search in Lucene

2008-10-09 Thread Albert Juhe
Hi, I want to make a wizard that can help to find n-grams terms. For example: If i want to search History, after write it the system propose you the following searches: history europe history spain history . Consulting the terms indexed. Does it exits in Lucene? thank you, Albert -- View t