I indexed my document using Field.Index.NO as the field index type, so
now I cannot search it to make updates.
Here's how the document was added:
Document doc = new Document();
doc.add(new Field("content_id", "1234", Field.Store.YES,
Field.Index.NO, Field.TermVector.NO));
The content_id is the primary key for my documents.
Using updateDocument(Term,doc) won't work because the field must be
indexed in order to match (?).
Since I did store the value, is it possible to update this field index
type to Field.Index.NOT_ANALYZED ?
It will be very difficult to reindex, so any feedback is appreciated.
Thanks,
Tommy
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]