I have an index that has multiple documents with a given term. I call
DeleteDocuments(new Term("FieldName", value)), but it seems to only
delete one document. Is this by design? A bug?
I add the field to the document like so:
d.Add(new Field("FieldName", value, Field.Store.YES,
Field.Index.UN_TOKENIZED));
--Max
