Re: appendable filed problem

2005-10-30 Thread Riccardo Daviddi
Ok, thank you for the clarification. Cheers, Riccardo On 10/29/05, Chris Hostetter <[EMAIL PROTECTED]> wrote: > > > : I read that field are appendable (pag 33 of Lucene in Action), so it's > easy > : just add each extracted text to the same index field "section". > : What it happens is not the e

Re: appendable filed problem

2005-10-29 Thread Chris Hostetter
: I read that field are appendable (pag 33 of Lucene in Action), so it's easy : just add each extracted text to the same index field "section". : What it happens is not the expected result, as it's said in Lucene in : Action, that is, Lucene doesn't internally appends all the texts together : and

appendable filed problem

2005-10-29 Thread Riccardo Daviddi
Hello, here is the problem. I have to index a text contained in some section tags (xml format) like this: text ... text ... text ... I want to put all the text contained in the various section in a same field named "section". I read that field are appendable (pag 33 of Lu