是否可以为单个节点添加多个位置并且 solr 可以显示搜索的所有位置?
场景:假设您有一个产品位于多个位置,当您搜索该产品(而不是位置)时,您应该会看到所有位置。在 Drupal 中,您可以使用多值字段来表示位置(但在 solr 中我不知道)。当使用 solr 对产品进行索引时,您不应该仅发送一次,例如 3 次(并将其保存在数据库中 3 次)。
The scenario: let's say you have a product in multiple location and when you search for the product (not for location) you should see all locations. In Drupal you can use multivalue fields for locations (but in solr I don't know). When index the product whit solr you should not send it, let's say, 3 time (and hold it in your DB 3 times) just once.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
同样,您也可以拥有多值字段。
因此,位置将是 Solr 中具有单一产品条目的多值条目。
位置将与产品文档一起返回,您可以根据需要对位置信息进行筛选。
In sor also, you can have multivalued fields.
So the location would be multivalued entries with a Single Product entry in Solr.
The locations would be returned with the product document, and you can filter, facet on the location information as required.