>Out of curiosity, what is the problem you are trying to solve?
I am trying to provide suggestions for search terms/word, such as google does.
When the user starts typing the search term, I look up my TermIndex to provide
possible search terms which fit the characters provided...
Thx
Clemens
>
TermAnalyzer# tokenStream ( final String fieldName, final Reader reader )
--
TokenStream t = new WhitespaceAnalyzer( Version.LUCENE_31 ).tokenStream(
fieldName, cf);
t = new StopFilter( Version.LUCENE_31, t, st
==
CALL FOR PAPERS
The 9th Workshop on
Java Technologies for Real-Time and Embedded System
JTRES 2011
September 26-28th 2011
Hey everyone,
As you no doubt by now know, Lucene Revolution, the second annual Lucene/Solr
conference sponsored by Lucid Imagination, is happening out in San Francisco at
the end of May. There are a lot of really great talks and speakers from across
the spectrum (check out lucenerevolution.o
Can you share the answer you found?
On Sun, Apr 24, 2011 at 8:31 AM, wenlei zhou wrote:
> Hi, WeiWei
> I have found the answer~~ Thank you very much!
>
> regards,
> Zhou Wenlei
>
> On 24 April 2011 19:29, wenlei zhou wrote:
>
> > Hi, WeiWei
> >
> > I find that org.tartarus.snowball.ext.PorterSt
On Sun, Apr 24, 2011 at 8:30 AM, Grant Ingersoll wrote:
>
> On Apr 21, 2011, at 5:02 PM, Clemens Wyss wrote:
>
>> I keep my search terms in a dedicated RAMDirectory (the termIndex).
>> In there I palce all the term of my real index. When putting the terms into
>> the
>> termIndex I can still see
I briefly read through and it seems that the classpath is wrong, it should be:
javac TextFileIndexer.java -classpath
../Lucene/lucene-core-3.1.0/
provided this is the directory including org/apache/lucene/*.class | **/*.class
simon
On Sun, Apr 24, 2011 at 9:17 PM, tales wrote:
> Hello everyone