Re: Detailed Information about Lucene 2.4 (english/german)

2009-01-20 Thread Matthias W.
Grant Ingersoll-6 wrote: > > I would have a look at Lucene In Action 2nd edition for a > comprehensive view. Otherwise, if you have specific questions, your > best bet is the mail archives and/or simply to ask. > > I don't know of any German resources. > Thanks! I think I'll buy Lucene

Detailed Information about Lucene 2.4 (english/german)

2009-01-19 Thread Matthias W.
Hi, I'm searching for detailed information and needed stuff about lucene (version 2.4.0 !!!) to write a dissertation. Does anyone know good english or german resources? Thanks! Matthias -- View this message in context: http://www.nabble.com/Detailed-Information-about-Lucene-2.4-%28english-ger

Re: Lucene SpellChecker returns no suggetions after changing Server

2008-12-22 Thread Matthias W.
Thanks for your answer. I already found the reason for the bad performance. hossman wrote: > > don't construct a new LuceneDictionary/IndexReader on every "suggest" call > ... construct them once, and reuse them for each suggestion. > This was the first thing I did, but the effect was not that

Re: Lucene SpellChecker returns no suggetions after changing Server

2008-12-15 Thread Matthias W.
query, 5); } catch (Exception e) {} for(int i = 0; i < suggestions.length; i++) { v.add(suggestions[i]); } return v; } Matthias W. wrote: > > Hi, > I'm using

Re: Lucene SpellChecker returns no suggetions after changing Server

2008-12-12 Thread Matthias W.
examples at: > http://www.lucenebootcamp.com/LuceneBootCamp/training/src/test/java/com/lucenebootcamp/training/basic/ContribExamplesTest.java > >Have a look at the testSpelling code there > > HTH, > Grant > > > On Dec 9, 2008, at 2:50 AM, Matthias W. wrote: >

Re: Lucene SpellChecker returns no suggetions after changing Server

2008-12-09 Thread Matthias W.
I tested it with the lucene-spellchecker-2.4.0.jar... Then I get the queryString as suggestion if it exists in the index. But there's no chance to get other suggestions neither with LevensteinDistance nor with JaroWinklerDistance. The setAccuracy() method has no effect on the result. I think this

Lucene SpellChecker returns no suggetions after changing Server

2008-12-08 Thread Matthias W.
Hi, I'm using Lucene's SpellChecker (Lucene 2.1.0) class to get suggestions. Till now my testing server was a VMWare-Image from http://es.cohesiveft.com http://es.cohesiveft.com (Ubuntu 8.10, Tomcat6, Java5). Now I'm using a Debian Etch Server with Tomcat5.5 and Java6. Code-Sample: String index