Lucene 4.3删除

时间:2013-06-17 09:23:53

标签: lucene

我从LuceneIndex删除文档时遇到问题。对于我的删除,我使用了一个termquery。在我发现文档未被删除后,我尝试先搜索文档,但未找到任何文档。

我像这样存储我的文件:

  public boolean storeNote(Note note) throws Exception {

        Document doc = new Document();

        this.initalizeWriter(OpenMode.CREATE_OR_APPEND);
        if (note != null && note.getUri() != null && note.getPatientUri() != null && !note.getUri().isEmpty()
                && !note.getPatientUri().isEmpty()) {

            doc.add(new TextField(URINOTE, note.getUri(), Field.Store.YES));
            doc.add(new TextField(URIPATIENT, note.getPatientUri(), Field.Store.YES));

            if (note.getTitle() != null && !note.getTitle().isEmpty()) {
                doc.add(new TextField(NOTETITLE, note.getTitle(), Field.Store.YES));
            }

            if (note.getText() != null && !note.getText().isEmpty()) {
                doc.add(new TextField(NOTETEXT, note.getText(), Field.Store.YES));
            }

        }

        try 
        {
        this.writer.addDocument(doc);
        }
        catch(Exception e)
        {
            LOGGER.info("DocSave Failed \n" + e.getMessage());
            return false;
        }
        finally
        {
            // Ensure that index is closed. Open indexFiles are locked!
            this.closeWriter();
        }
        return true;
    }

将文档存储到我的索引之后,就有时间将其删除,我尝试这样做:

 public boolean deleteNote(Note note) throws IOException
    {
        if(note == null || note .getUri() == null || note.getUri().isEmpty() )   
                return false;

            LOGGER.info("Deleting Notes with URI '" + note.getPatientUri());

            TermQuery deleteTerm = new TermQuery(new Term(URINOTE, note.getUri()));

            try
            {
                this.initalizeWriter(OpenMode.CREATE_OR_APPEND);
                this.writer.deleteDocuments(deleteTerm);      
                this.writer.commit();
                LOGGER.info("Deleting for '" + note.getUri() + "done");
            }
            catch(Exception e)
            {
                this.writer.rollback();
                LOGGER.info("Rollback for '" + note.getPatientUri() + "done \n");
                LOGGER.info("Check Consitenzy");
            }
            finally
            {
               this.closeWriter();
            }
            return true;
    }

String queryString = URIPATIENT + ":\"" + request.getPatientUri() + "\"";

        Query query = new QueryParser(Version.LUCENE_43, NOTETEXT, analyzer).parse(queryString);

我的问题是我的deleteTerm没有返回任何结果。我通过我的deleteTerm搜索来尝试它。

任何想法我错过了什么?

1 个答案:

答案 0 :(得分:1)

对于文档的ID,您应该使用“非标记化”的内容。 你应该使用'StringField',文档说:

  

StringField:索引但未标记化的字段:整个String   value被索引为单个标记。

然后删除应该由单个术语调用(您不需要查询)。

doc.add(new StringField(URINOTE, note.getUri(), Field.Store.YES));
....
this.writer.deleteDocuments(new Term(URINOTE, note.getUri()));

这应该有效。