Hi guys,
I want to use lucene for my new application and I have to store my
lucene index on another server than my client is running on. What is the
best way to use the index? Only found RAMDirectory and FSDirectory in
lucene package.
I read something about "download, manipulate and upload i
I hope now I am in the right mailinglist. In the -dev mailinglist Steven
Parkes said, that I have to change this:
> Field.Text(String, String);
to
> Field.Text(String, String, Field.Store.YES, Field.Index.TOKENIZED);
But it seems that there isnt such a method declaration. Where is the
mistake
typo. Get rid of the .Text:
Field(String, String, Field.Store.YES, Field.Index.TOKENIZED);
-Original Message-
From: Jan Pieper [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 05, 2006 2:53 PM
To: java-user@lucene.apache.org
Subject: Problem with Field.Text()
I hope now I am in the
Yeah it works :) thanks to all, for help.
You have to create a new Field class with "new Field(...", i.e.
replace doc.add(Field.Text with doc.add(new Field(...
Antony
Jan Pieper wrote:
No it is not your fault, it is mine, but it also does not function.
My compiler
giv