public void index(IndexItem indexItem) throws IOException {
writer.deleteDocuments(new Term(IndexItem.ID,indexItem.getId().toString()));
Document doc = new Document();
// doc.add(new LongField(IndexItem.ID, indexItem.getId(), Field.Store.YES));
doc.add(new TextField(IndexItem.CONTENT, indexItem.getContent(), Field.Store.NO));
doc.add(new StringField(IndexItem.PATH, indexItem.getPath(), Field.Store.YES));
// add the document to the index
writer.addDocument(doc, analyzer);
writer.updateDocument(new Term(IndexItem.CONTENT, indexItem.getContent().toString()), doc);
System.out.println(indexItem.getTitle());
writer.close();
}
这里 Writer.deleteDocuments 不起作用。因此,每次我索引一个文件时,它不会删除已经存在的文件然后创建一个新文件,而只是制作它的副本。
这是否与 work.lock 文件有关