我无法使用Lucene.NET 2.0.0.4
搜索确切的短语例如,我正在搜索“范围属性设置变量”(包括引号)但没有收到匹配项,我已经确认100%该短语存在。
有谁能建议我哪里出错了?这甚至是Lucene.NET支持的吗?像往常一样,API文档并没有太大帮助,我读过的一些CodeProject文章没有特别说明这一点。
使用以下代码创建索引:
Directory dir = Lucene.Net.Store.FSDirectory.GetDirectory("Index", true);
Analyzer analyzer = new Lucene.Net.Analysis.SimpleAnalyzer();
IndexWriter indexWriter = new Lucene.Net.Index.IndexWriter(dir, analyzer,true);
//create a document, add in a single field
Lucene.Net.Documents.Document doc = new Lucene.Net.Documents.Document();
Lucene.Net.Documents.Field fldContent = new Lucene.Net.Documents.Field(
"content", File.ReadAllText(@"Documents\100.txt"),
Lucene.Net.Documents.Field.Store.YES,
Lucene.Net.Documents.Field.Index.TOKENIZED);
doc.Add(fldContent);
//write the document to the index
indexWriter.AddDocument(doc);
然后我使用以下方法搜索短语:
//state the file location of the index
Directory dir = Lucene.Net.Store.FSDirectory.GetDirectory("Index", false);
//create an index searcher that will perform the search
IndexSearcher searcher = new Lucene.Net.Search.IndexSearcher(dir);
QueryParser qp = new QueryParser("content", new SimpleAnalyzer());
// txtSearch.Text Contains a phrase such as "this is a phrase"
Query q=qp.Parse(txtSearch.Text);
//execute the query
Lucene.Net.Search.Hits hits = searcher.Search(q);
目标文档大约是7 MB纯文本。
我已经看到了这个previous question但是我不想要接近搜索,只需要一个精确的短语搜索。
答案 0 :(得分:14)
Shashikant Kore is correct with his answer,您需要启用术语位置...
但是,我建议不要在文档中存储文档的文本,除非您绝对需要它在搜索结果中返回给您...将商店设置为“否”可能有助于减小索引的大小一点。
Lucene.Net.Documents.Field fldContent =
new Lucene.Net.Documents.Field("content",
File.ReadAllText(@"Documents\100.txt"),
Lucene.Net.Documents.Field.Store.NO,
Lucene.Net.Documents.Field.Index.TOKENIZED,
Lucene.Net.Documents.Field.TermVector.WITH_POSITIONS_OFFSETS);
答案 1 :(得分:13)
您尚未启用术语位置。如下创建字段可以解决您的问题。
Lucene.Net.Documents.Field fldContent =
new Lucene.Net.Documents.Field("content",
File.ReadAllText(@"Documents\100.txt"),
Lucene.Net.Documents.Field.Store.YES,
Lucene.Net.Documents.Field.Index.TOKENIZED,
Lucene.Net.Documents.Field.TermVector.WITH_POSITIONS_OFFSETS);