从 FastVectorHighlighter 中的 GetBestFragment 返回整个字段

发布于 2024-08-31 16:34:20 字数 100 浏览 4 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

输什么也不输骨气 2024-09-07 16:34:20

如果您将 SimpleFragListBuilder-fragmenter 用于 FastVectorHighlighter,则需要修改fragmenter的公共静态属性来管理片段大小:(

var fieldContent = "some data";

SimpleFragListBuilder.MARGIN = fieldContent.Length;
SimpleFragListBuilder.MIN_FRAG_CHAR_SIZE = SimpleFragListBuilder.MARGIN*3;

var result = highlighter.GetBestFragment(.., fragCharSize: SimpleFragListBuilder.MIN_FRAG_CHAR_SIZE);

有关详细信息,请参阅源代码 - '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:

var fieldContent = "some data";

SimpleFragListBuilder.MARGIN = fieldContent.Length;
SimpleFragListBuilder.MIN_FRAG_CHAR_SIZE = SimpleFragListBuilder.MARGIN*3;

var result = highlighter.GetBestFragment(.., fragCharSize: SimpleFragListBuilder.MIN_FRAG_CHAR_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])

随遇而安 2024-09-07 16:34:20

仅使用 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 to GetBestFragment()), so why not just use it?

伤感在游骋 2024-09-07 16:34:20

有一个 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文