在我的索引中我有两种类型广告和产品,
产品:
_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个产品相关联的广告
谢谢
答案 0 :(得分:1)
_parent
字段已编制索引并存储,因此您可以将其用作任何其他字段。例如,您可以使用_parent
字段进行搜索以检索给定产品的所有广告,也可以在_parent
字段中检索值存储,并使用Get操作来检索产品。