2

我的索引已成功创建。我的问题是,当尝试在 Luke 中读取它时,我收到一个错误:

Caused by: java.io.IOException: read past EOF

我知道 Lucene 确实提供了不存储字段的选项。但是,解决此问题的最佳方法是什么?

  • 无论大小如何都存储该字段,如果找到搜索结果,则从文档中获取适当的字段或
  • 不要存储字段,如果找到搜索结果,查询数据库以获取相关信息?

以下是用于创建索引的代码:

public class CREATEiNDEX {
    /**
     * @param args
     * @throws IOException 
     */
    public static void main(String[] args) throws IOException {
        StandardAnalyzer analyzer = new StandardAnalyzer(Version.LUCENE_43);
        Directory index = FSDirectory.open(new File("C:/toturials/luceneindex/"));
        IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_43, analyzer);
        IndexWriter w = new IndexWriter(index, config);
        List <String>list=readingPersonFile();

        for (int i = 0; i < list.size(); i++)
        {
            addDoc(w, String.valueOf(i),list.get(i));
        }
        w.close();
    }

    private static void addDoc(IndexWriter w, String title, String isbn) throws IOException {
        Document doc = new Document();
        doc.add(new StringField("Id", title, Field.Store.YES));
        doc.add(new TextField("Name", isbn, Field.Store.YES));
        w.addDocument(doc);
    }
4

1 回答 1

0

我认为您应该在删除索引后创建新索引。

于 2013-06-15T16:57:05.847 回答