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
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
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
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
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:
>
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
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