Getting the Doc ID in Lucene(在 Lucene 中获取文档 ID)
问题描述
在 lucene 中,我可以做到以下几点
In lucene, I can do the following
doc.GetField("mycustomfield").StringValue();
这会检索索引文档中列的值.
This retrieves the value of a column in an index's document.
我的问题,对于同一个'doc'
,有没有办法获取Doc.身份证
?卢克展示了它,因此必须有办法解决这个问题.我需要它来删除有关更新的文档.
My question, for the same 'doc'
, is there a way to get the Doc. Id
? Luke displays it hence there must be a way to figure this out. I need it to delete documents on updates.
我搜索了文档,但没有找到要在 GetField 中使用的术语,或者是否已经有其他方法.
I scoured the docs but have not found the term to use in GetField or if there already is another method.
推荐答案
原来你必须这样做:
var hits = searcher.Search(query);
var result = hits.Id(0);
相对于
var results = hits.Doc(i);
var docid = results.<...> //there's nothing I could find there to do this
这篇关于在 Lucene 中获取文档 ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Lucene 中获取文档 ID


基础教程推荐
- JSON.NET 中基于属性的类型解析 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01