0

在我的索引中,我有两种类型的广告和产品,

产品 :

_index: fadel
_type: product
_id: 103|2
_version: 1
_score: 1
_source: {
code: 35569058
manufacturer: Packard Bell
tax_class_id: [ ]
visibility: 4
price: [ ]
in_stock: 1
.....
....

广告

_index: fadel
_type: ads
_id: 92
_version: 1
_score: 1
_source: {
customer_id: 2
ads_id: 92
product_id: 28
price_current: 1200.0000
is_pro_customer: 0
state: 13
qty_current: 19
}
fields: {
_parent: 28|2
}

那么如何获取产品的所有广告,以及如何将相关产品检索到广告

PS : 1 个产品可能有一个或多个广告,但一个广告与 1 个产品相关联

谢谢你

4

1 回答 1

1

_parent字段被索引和存储,因此您可以将其用作任何其他字段。例如,您可以使用_parent字段搜索以检索给定产品的所有广告,或者您可以检索_parent字段中的值存储并使用Get操作来检索产品。

于 2012-12-31T14:45:03.590 回答