我是Lucene.net的新手。我需要在文件夹中搜索用户输入的关键字的所有文档。
我已将文件夹中的所有文件编入索引,并为用户输入的关键字准备了查询并进行了搜索。
问题是我可以获得点击量,当我尝试重复点击时,我无法从点击文档中获取字段。
这是我的代码。
public void Searching()
{
Analyzer analyzer = new StandardAnalyzer(luceneVersion.Version.LUCENE_29);
QueryParser parser = new QueryParser(luceneVersion.Version.LUCENE_29, "content", analyzer);
Query query = parser.Parse(txtSearchText.Text);
Directory directory = FSDirectory.Open(new System.IO.DirectoryInfo(txtIndexPath.Text.Trim()));
Searcher searcher = new IndexSearcher(IndexReader.Open(directory, true));
TopScoreDocCollector collector = TopScoreDocCollector.Create(100, true):
searcher.Search(query, collector);
ScoreDoc [] hits = collector.TopDocs(). ScoreDocs;
foreach (ScoreDoc hit in hits)
{
int id = hit.Doc;
float score = hit.Score;
Document doc = searcher.Doc(id);
string content = doc.Get("content"); // null
}
}
尝试调试时,我得到的内容为空,为空。
我的代码中遗漏了任何内容,这实际上是半天以来一直困扰着我。请帮帮我。
提前致谢。
答案 0 :(得分:0)
无论我能做什么,我都在尝试这一切。问题是我一直在索引而没有将文档的id字段存储在索引文件中。
以下是索引时使用的代码。
doc.Add(new Field("id", id, Field.Store.NO, Field.Index.ANALYZED);
虽然它应该如下所示,以便它可以在索引文件中使用。
doc.Add(new Field("id", id, Field.Store.YES, Field.Index.ANALYZED);