- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我对我观察到的一些 Lucene.NET 行为感到非常困惑。我假设在 Java 的 Lucene 中也是如此,但尚未验证。这是一个演示的测试:
[Fact]
public void repro()
{
var directory = new RAMDirectory();
var analyzer = new StandardAnalyzer(Lucene.Net.Util.Version.LUCENE_30);
float firstScore, secondScore, thirdScore;
using (var indexWriter = new IndexWriter(directory, analyzer, IndexWriter.MaxFieldLength.UNLIMITED))
{
var document = new Document();
document.Add(new Field("id", "abc", Field.Store.YES, Field.Index.NOT_ANALYZED));
document.Add(new Field("field", "some text in the field", Field.Store.NO, Field.Index.ANALYZED));
indexWriter.UpdateDocument(new Term("id", "abc"), document, analyzer);
// the more times I call UpdateDocument here, the higher the score is for the subsequent hit
// indexWriter.UpdateDocument(new Term("id", "abc"), document, analyzer);
indexWriter.Commit();
var queryParser = new QueryParser(Lucene.Net.Util.Version.LUCENE_30, "field", analyzer);
var parsedQuery = queryParser.Parse("some text in the field");
using (var indexSearcher = new IndexSearcher(directory, readOnly: true))
{
var hits = indexSearcher.Search(parsedQuery, 10);
Assert.Equal(1, hits.TotalHits);
firstScore = hits.ScoreDocs[0].Score;
}
using (var indexSearcher = new IndexSearcher(directory, readOnly: true))
{
var hits = indexSearcher.Search(parsedQuery, 10);
Assert.Equal(1, hits.TotalHits);
secondScore = hits.ScoreDocs[0].Score;
}
document = new Document();
document.Add(new Field("id", "abc", Field.Store.YES, Field.Index.NOT_ANALYZED));
document.Add(new Field("field", "some changed text in the field", Field.Store.NO, Field.Index.ANALYZED));
// if I call DeleteAll here, then score three is the same as score one and two (which is probably fine, though not quite what I expected either)
// indexWriter.DeleteAll();
indexWriter.UpdateDocument(new Term("id", "abc"), document, analyzer);
indexWriter.Commit();
using (var indexSearcher = new IndexSearcher(directory, readOnly: true))
{
var hits = indexSearcher.Search(parsedQuery, 10);
Assert.Equal(1, hits.TotalHits);
thirdScore = hits.ScoreDocs[0].Score;
}
}
// this is fine
Assert.Equal(firstScore, secondScore);
// this is not
Assert.True(thirdScore < secondScore);
}
步骤是:
firstScore
和 secondScore
thirdScore
真正奇怪的是 thirdScore
比 firstScore
和 secondScore
更好。这是我发现的:
UpdateDocument
的次数越多,得分就越高RemoveDocument
并手动删除和添加文档没有区别WaitForMerges
没有任何区别任何人都可以向我解释这种行为吗?当文档内容和查询都没有改变时,为什么分数会随着文档的后续更新而改变?
最佳答案
首先,当您试图理解为什么以某种方式对某些内容进行评分时,您应该知道最有用的工具:IndexSearcher.Explain
Explanation explain = indexSearcher.Explain(parsedQuery, hits.ScoreDocs[0].Doc);
其中详细解释了该分数是如何得出的。在这种情况下,两个不同的评分查询看起来非常相似除了第三个查询的 idf 分数看起来像这样:
0.5945349 = idf(docFreq=2, maxDocs=2)
与前两个查询相比:
0.3068528 = idf(docFreq=1, maxDocs=1)
Lucene 更新只是先删除再插入。删除通常只是标记要删除的文档,并等到稍后从索引中实际清除数据。因此,您不会在搜索结果中看到已删除的文档,但它们仍然会影响 docfreq 等统计数据。当您拥有大量数据时,影响通常很小。
您可以强制索引 ExpungeDeletes
以查看此内容:
indexWriter.UpdateDocument(new Term("id", "abc"), document, analyzer);
indexWriter.Commit();
//arugment=true to block until completed.
indexWriter.ExpungeDeletes(true);
indexWriter.Commit();
然后你应该看到他们都得到相同的分数。
请记住,删除删除可能是一项非常昂贵的操作。实际上,您可能不应该在每次更新后都这样做。
至于为什么“字段中有一些文本”和“字段中有一些更改的文本”的文档得到相同的分数,你指的是 lengthNorm 分数因素。 lengthNorm 在索引时计算,并存储在字段的范数中,为了性能,范数以非常有损的方式压缩到单个字节。总而言之,它们具有三位精度,甚至不到一位有效的小数位。因此,这两者之间的差异不足以在分数中表示。用类似的东西试试:
some more significantly changed text in the field
您应该会看到 lengthNorm 生效。
关于c# - Lucene:对同一文档多次调用 UpdateDocument 会导致分数不断增加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28407613/
我有一个很大的索引(大约 100 GB),我想经常更新索引中的文档。我对两种方法有疑问: 1) 更新文档 2) 删除文档并添加更新版本 哪个会更快?还有其他优缺点吗!? 最佳答案 关于 Lucene
我的项目围绕 Lucene 6.6.0 展开。实际上,它涉及一个用 java 编写的桌面搜索引擎,其中搜索部分与索引部分位于单独的应用程序中。有时我必须向索引添加新字段以满足客户需求,而不必重新索引(
我对我观察到的一些 Lucene.NET 行为感到非常困惑。我假设在 Java 的 Lucene 中也是如此,但尚未验证。这是一个演示的测试: [Fact] public void repro() {
我正在以正常方式创建索引: var directory = FSDirectory.Open(...); var analyzer = ... var indexWriter = new IndexW
我只是想知道如何根据数字字段更新(删除/插入)文档。到目前为止,我是这样做的: LuceneManager.updateDocument(writer, new Term("id", Numeric
我正在尝试使用 writer.update(Term t, Document doc) 方法更新索引中的文档。如果我在 Term 中指定 TextField 则更新成功,但当我在 Term 中提供 L
我是一名优秀的程序员,十分优秀!