# some java_imports here
index = RAMDirectory.new
IndexWriter.new(index, StandardAnalyzer.new(Version::LUCENE_30), IndexWriter::MaxFieldLength::UNLIMITED )
IndexSearcher.new(index)
产生
NativeException: org.apache.lucene.index.IndexNotFoundException: no segments* file found in org.apache.lucene.store.RAMDirectory@668c640e lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@afd07bb: files: []
为什么会这样?
答案 0 :(得分:11)
IndexSearcher需要一个特殊的目录结构,它找不到,因为没有写入任何段(当您向IndexWriter添加文档时,它们在内存中排队,并且当已用内存量达到给定阈值或提交时()被调用,这些内存中的数据结构被刷新到磁盘,导致Lucene称之为段。)
您需要做的是在打开IndexSearcher之前通过调用commit明确创建一个段。
index = RAMDirectory.new
writer = IndexWriter.new(index, StandardAnalyzer.new(Version::LUCENE_30),IndexWriter::MaxFieldLength::UNLIMITED)
writer.commit()
IndexSearcher.new(index)
此外,在Lucene 3.4中不推荐使用此IndexWriter构造函数,您应该使用IndexWriterConfig为IndexWriter配置:
iwConfig = IndexWriterConfig.new(Version::LUCENE_34, StandardAnalyzer.new(Version::LUCENE_34))
writer = IndexWriter.new(index, iwConfig)
答案 1 :(得分:0)
而不是调用显式提交,您可以确保关闭IndexWriter,它应该隐式提交和关闭lucene 4中的资源