What kind of failures do you get? And I'm confused by the code. Are you creating a new IndexWriter every time? Do you ever close it?
It'd help to see the surrounding code... Best Erick On Sat, Mar 28, 2009 at 1:36 PM, Raymond Balmès <raymond.bal...@gmail.com>wrote: > Hi guys, > > I'm using a SinkTokenizer to collect some terms of the documents while > doing > the main document indexing > I attached it to a specific field (tokenized, indexed). > > * > > writer* = *new* IndexWriter(index, *my _analyzer*, create, > *new*IndexWriter.MaxFieldLength(1000000)); > doc.add(new Field("content", reader)); > > doc.add(*new* Field("*myField*",*my_analyzer.sinkStream**));* > > writer.addDocument(doc); > > I have a set of document which don't have those terms so the Sink is empty. > > writer.addDocument works fine on the first document, but it fails always on > the second ???? > > Any idea what I should look for... I kind of get stuck, because > understanding what's done under addDocument is tough. > > -Raymond- >