如何增强solr中的字段
我已经事先确定了提升。我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在查询期间添加提升,例如
How_can_I_boost_the_score_of_newer_documents
但是,这可能需要通过以下方式显式添加你。
如果您将
dismax
或edismax
与请求处理程序一起使用,则可以使用 bf(Boost Functions)参数来增强文档。http://wiki.apache.org/solr/DisMaxQParserPlugin#bf_.28Boost_Functions.29
这可以添加到请求处理程序定义的默认值中,以便它们应用于所有搜索查询。
您可以使用函数查询来改变提升量 FunctionQuery
you can add the boost during query e.g.
How_can_I_boost_the_score_of_newer_documents
However, this may need to be added explicitly by you.
If you are using
dismax
oredismax
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
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
我认为您需要使用索引时间文档提升。如果您要对 XML 或 这个(如果使用
DataImportHandler
)。I think you need to use index time document boosts. See this if you are indexing XML or this if using
DataImportHandler
.