我正在尝试创建一个 IndexWriter 并写入一个 Lucene 索引。这是我的代码:
public class Indexer {
public static Analyzer _analyzer = new StandardAnalyzer(Lucene.Net.Util.LuceneVersion.LUCENE_48);
private void WriteToIndex() {
var config = new IndexWriterConfig(Lucene.Net.Util.LuceneVersion.LUCENE_48, _analyzer).SetUseCompoundFile(false);
using (IndexWriter indexWriter = new IndexWriter(LuceneDirectory, config)) <-- This throws an error!
{
// ....
}
}
}
但是在尝试创建 IndexWriter 时,我不断遇到异常:
Exception thrown: 'Lucene.Net.Util.SetOnce`1.AlreadySetException' in Lucene.Net.dll
Additional information: The object cannot be set twice!
我究竟做错了什么?代码编译完美。我正在使用 Lucene.NET,但我猜它也应该适用于 Java。