【发布时间】:2017-07-29 01:45:51
【问题描述】:
我正在尝试执行包含“More Like This”组件的 solr 查询。在文档中找不到这种情况。这是一个带有两个字段的假设示例 Product 实体 -
{
product_name: "name of the product in 3 or 4 words"
product_description: "this is a long english verbose text, may be 10
sentences"
}
如果给我一个新产品,我想在我的 Solr 索引中搜索类似的产品。搜索应使用以下逻辑 -
- newProduct.product_name - 我想对索引中的“product_name”字段进行简单的基于令牌的搜索。
- newProduct.product_description - 我想使用此字段对索引中的“product_description”字段执行“更多类似”搜索。
如何通过对 Solr 的单个查询来完成此操作?
如果场景不清楚,请告诉我。
【问题讨论】:
标签: solr