Re: Extract the text that was indexed

2009-01-02 Thread Lebiram
.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

Re: Extract the text that was indexed

2009-01-01 Thread Chris Hostetter
: > 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

Re: Extract the text that was indexed

2008-12-30 Thread Karl Wettin
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

Re: Extract the text that was indexed

2008-12-30 Thread Lebiram
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

Re: Extract the text that was indexed

2008-12-30 Thread Erick Erickson
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

Re: Extract the text that was indexed

2008-12-30 Thread Greg Shackles
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

Re: Extract the text that was indexed

2008-12-30 Thread Alexander Aristov
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.

Extract the text that was indexed

2008-12-30 Thread 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... I'd appreciate your help