是否可以为单个节点添加多个位置并且 solr 可以显示搜索的所有位置?

发布于 2024-12-17 00:46:19 字数 144 浏览 0 评论 0原文

场景:假设您有一个产品位于多个位置,当您搜索该产品(而不是位置)时,您应该会看到所有位置。在 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 技术交流群。

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

发布评论

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

评论(1

静待花开 2024-12-24 00:46:19

同样,您也可以拥有多值字段。

<field name="location" type="text" indexed="true" stored="true" multiValued="true"/>

因此,位置将是 Solr 中具有单一产品条目的多值条目。
位置将与产品文档一起返回,您可以根据需要对位置信息进行筛选。

In sor also, you can have multivalued fields.

<field name="location" type="text" indexed="true" stored="true" multiValued="true"/>

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.

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