如何增强solr中的字段

发布于 2024-12-08 18:24:19 字数 278 浏览 1 评论 0原文

我已经事先确定了提升。我的 solr 索引中有一个名为 boost1 的字段。该提升字段的值介于 1 到 10 之间,类似于 google PR 排名。这是应该应用于 solr 中运行的每个查询的提升。这是我的索引中的字段

  • Id
  • Title
  • Text
  • Boost1

boost 字段应该适用于每个查询。我正在尝试实现类似于 Google PR 排名的功能。有没有办法使用 solr 来做到这一点?

I already have the boost determined before hand. I have a field in the solr index called boost1 . This boost field will have a value from 1 to 10 similar to google PR rank. This is the boost that should be applied to every query ran in solr. here are the fields in my index

  • Id
  • Title
  • Text
  • Boost1

The boost field should be apply to every query. I am trying to implement functionality similar to Google PR rank. Is there a way to do this using solr?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

幽梦紫曦~ 2024-12-15 18:24:19

您可以在查询期间添加提升,例如

q={!boost b=boost1}

How_can_I_boost_the_score_of_newer_documents

但是,这可能需要通过以下方式显式添加你。

如果您将 dismaxedismax 与请求处理程序一起使用,则可以使用 bf(Boost Functions)参数来增强文档。
http://wiki.apache.org/solr/DisMaxQParserPlugin#bf_.28Boost_Functions.29

bf=boost1^0.5

这可以添加到请求处理程序定义的默认值中,以便它们应用于所有搜索查询。

您可以使用函数查询来改变提升量 FunctionQuery

you can add the boost during query e.g.

q={!boost b=boost1}

How_can_I_boost_the_score_of_newer_documents

However, this may need to be added explicitly by you.

If you are using dismax or edismax with the request handler, The bf (Boost Functions) parameter could be used to boost the documents.
http://wiki.apache.org/solr/DisMaxQParserPlugin#bf_.28Boost_Functions.29

bf=boost1^0.5

This can be added to defaults with the request handler definition, so that they are applied to all the search queries.

you can use function queries to vary the amount of boost FunctionQuery

裸钻 2024-12-15 18:24:19

我认为您需要使用索引时间文档提升。如果您要对 XML 或 这个(如果使用DataImportHandler)。

I think you need to use index time document boosts. See this if you are indexing XML or this if using DataImportHandler.

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