Re: Question about MaxFieldLength

2011-08-27 Thread Li Li
It will affect the entire index because it 's a parameter of IndexWriter. but you can modify it anytime you like before IndexWriter.addDocument. If you want to truncate different fields with different maxLength. you should avoid multithreads' race condition. maybe you can add a TokenFilter t

Re: Question about MaxFieldLength

2011-08-27 Thread roz dev
Thanks Li. It makes sense On Sat, Aug 27, 2011 at 7:28 PM, Li Li wrote: > It will affect the entire index because it 's a parameter of IndexWriter. > but you can modify it anytime you like before IndexWriter.addDocument. > If you want to truncate different fields with different maxLength. you

RE: Question about MaxFieldLength

2011-08-28 Thread Uwe Schindler
o: java-user@lucene.apache.org > Subject: Re: Question about MaxFieldLength > >It will affect the entire index because it 's a parameter of IndexWriter. > but you can modify it anytime you like before IndexWriter.addDocument. > If you want to truncate different fields with