hello all

        how do i update my existing index to avoid my duplicates , this is
how am doing my indexing

   doc.add(new Field("id",""+i,Field.Store.YES,Field.Index.NOT_ANALYZED));
                       
   doc.add(new Field("title", indexForm.getTitle(), Field.Store.YES,
                                        Field.Index.ANALYZED));
   doc.add(new Field("contents", indexForm.getContent(),
                Field.Store.YES, Field.Index.ANALYZED));
   writer.updateDocument(new Term("id"), doc);

   but i've no luck , the index getting duplicate documents , how do i
handle it? please anyone help me?
-- 
View this message in context: 
http://old.nabble.com/updating-index-tp26635841p26635841.html
Sent from the Lucene - Java Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org

Reply via email to