从 FastVectorHighlighter 中的 GetBestFragment 返回整个字段
在Highlighter.Net中,我们可以使用NullFragmenter来返回整个字段内容。我们有什么办法可以在 FastVectorHighlighter.Net 中做到这一点吗?
In Highlighter.Net, we can use NullFragmenter to return the entire field content. Is there any way we can do this in FastVectorHighlighter.Net?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您将 SimpleFragListBuilder-fragmenter 用于 FastVectorHighlighter,则需要修改fragmenter的公共静态属性来管理片段大小:(
有关详细信息,请参阅源代码 - 'Lucene.Net 3.0.3 SimpleFragListBuilder.cs' [http://lucenenet.apache.org/ docs/3.0.3/dd/d38/_simple_frag_list_builder_8cs_source.html])
If you use SimpleFragListBuilder-fragmenter for FastVectorHighlighter then need to modify a public static properties of fragmenter to manage fragment size:
(see source for details - 'Lucene.Net 3.0.3 SimpleFragListBuilder.cs' [http://lucenenet.apache.org/docs/3.0.3/dd/d38/_simple_frag_list_builder_8cs_source.html])
仅使用
document.Get("field_name")
并以这种方式返回整个字段内容不是一个选择吗?无论如何,您可能已经在上下文中的某个地方编写了文档(因为您需要GetBestFragment()
的文档 ID),那么为什么不直接使用它呢?Isn't it an option to just use
document.Get("field_name")
and return the entire field content in such a way? You probably have you document somewhere in the context anyway (as you need doc id toGetBestFragment()
), so why not just use it?有一个 java FVH 补丁声称可以做到这一点。我没有亲自测试过。
https://issues.apache.org/jira/browse/LUCENE-2464
There is a patch for java FVH that claims to do this. I haven't personally tested it.
https://issues.apache.org/jira/browse/LUCENE-2464