.3.1.jar
org.apache.lucene.index.FieldNormModifier C:/index -n field1 field2 field3
field4 field5 field6 field7
From: Chris Hostetter
To: java-user@lucene.apache.org
Sent: Friday, January 2, 2009 12:25:13 AM
Subject: Re: Extract the text that was indexed
: > Just wanted to reconstruct
: > Just wanted to reconstruct a new index based on an existing index(but
: > turning off norms) that's all.
:
: If you want to create an identical index but without norms use
: FieldNormModifier in contrib/miscellaneous.
and that ladies nad gentlemen is *exactly* the definition of an "X/Y
Prob
30 dec 2008 kl. 17.13 skrev Lebiram:
Hi Lebiram,
contrib/misc contains a couple of tools that might be of help.
Just wanted to reconstruct a new index based on an existing
index(but turning off norms) that's all.
If you want to create an identical index but without norms use
FieldNormModi
guys!
From: Erick Erickson
To: java-user@lucene.apache.org
Sent: Tuesday, December 30, 2008 3:41:46 PM
Subject: Re: Extract the text that was indexed
Actually, you can reconstruct the text, but it's a lossy process. Stop words
aren't in the index for instance. And
e but from my understanding fields that are only indexed and
> > not
> > stored do not keep position. So even if you get back all terms for a
> field
> > for a given document you won't be able to reconstruct original words
> > sequence.
> >
> > And remembe
ll terms for a field
> for a given document you won't be able to reconstruct original words
> sequence.
>
> And remember that not all words are indexed.
>
> Alex
>
> 2008/12/30 Lebiram
>
> > Hi All,
> >
> > Is it possible to extract the text that w
12/30 Lebiram
> Hi All,
>
> Is it possible to extract the text that was indexed but not stored for a
> field in a document?
>
> Right now, reader.document() returns only fields that was stored. However
> I'd also want to get the text on the indexed only field.
Hi All,
Is it possible to extract the text that was indexed but not stored for a field
in a document?
Right now, reader.document() returns only fields that was stored. However I'd
also want to get the text on the indexed only field...
I'd appreciate your help