获得在Lucene中的文件编号编号、文件、Lucene

由网友(危险又迷人)分享简介:在Lucene的,我可以做以下In lucene, I can do the followingdoc.GetField("mycustomfield").StringValue();这检索索引的文档列的值。This retrieves the value of a column in an index's do...

在Lucene的,我可以做以下

In lucene, I can do the following

doc.GetField("mycustomfield").StringValue();

这检索索引的文档列的值。

This retrieves the value of a column in an index's document.

我的问题,对于相同的文档,有没有办法让文档。 ID为?卢克显示它因此必须有办法弄清楚这一点。我需要它来删除文件上的更新。

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
阅读全文

相关推荐

最新文章