Re: Document not searchable after IndexWrite.updateDocument

2013-09-18 Thread Sanket Paranjape
java-user@lucene.apache.org Subject: Document not searchable after IndexWrite.updateDocument Hi, I wrote a simple code to update a lucene document with new values. Code Snippet: Term term = new Term("PRODUCT_CODE", productCode); TermQuery query = new TermQuery(term);

RE: Document not searchable after IndexWrite.updateDocument

2013-09-18 Thread Uwe Schindler
Sanket Paranjape [mailto:sanket.paranjape.mailingl...@gmail.com] > Sent: Wednesday, September 18, 2013 2:51 PM > To: java-user@lucene.apache.org > Subject: Document not searchable after IndexWrite.updateDocument > > Hi, > > I wrote a simple code to update a lucene document with new values. >

Document not searchable after IndexWrite.updateDocument

2013-09-18 Thread Sanket Paranjape
Hi, I wrote a simple code to update a lucene document with new values. Code Snippet: Term term = new Term("PRODUCT_CODE", productCode); TermQuery query = new TermQuery(term); TopDocs productDoc = this.searcher.search(query, 1); int docNum = scoreDoc.doc; Document doc = searcher.