任何人都知道如何创建一个索引,其中该术语是ref,并且可以通过数组中的嵌套对象进行搜索吗?
在集合“对话”中,我保存了以下示例数据:
{
"created": Time("2019-09-29T22:11:01.493034Z"),
"updated": Time("2019-09-29T22:11:01.493034Z"),
"participants": [
{
"ref": Ref(Collection("users"), "244754936642929163"),
"firstname": "John",
"creator": true
},
{
"ref": Ref(Collection("users"), "244517629884105216"),
"firstname": "Max"
}
]
}
有一个索引很好,我可以在其中搜索参与者数组中是否包含引用。
答案 0 :(得分:2)
这可以使用将数组选为术语的索引来解决。当以术语为目标的字段是数组时,会在数组中的每个每个项目中生成单独的索引条目。因此,假设存在现成的集合parent
和child
,那么
db> CreateIndex({name: "cs", source: Collection("parent"), terms: [{field: ["data", "child"]}]})
{
ref: Index("cs"),
ts: 1569831659780000,
active: true,
serialized: true,
name: 'p',
source: Collection("parent"),
terms: [ { field: [ 'data', 'child' ] } ],
partitions: 1
}
会做生意。用法示例:
db> Create(Collection("child"), {})
{
ref: Ref(Collection("child"), "244918886014648845"),
ts: 1569831701200000
}
db> Create(Collection("child"), {})
{
ref: Ref(Collection("child"), "244918887478460941"),
ts: 1569831702590000
}
db> Create(Collection("parent"), {data:{child:[Ref(Collection("child"), "244918886014648845"), Ref(Collection("child"), "244918887478460941")]}})
{
ref: Ref(Collection("parent"), "244918956982272520"),
ts: 1569831768880000,
data: {
child: [
Ref(Collection("child"), "244918886014648845"),
Ref(Collection("child"), "244918887478460941")
]
}
}
db> Paginate(Match(Index("cs"), Ref(Collection("child"), "244918886014648845")))
{
data: [
Ref(Collection("parent"), "244918956982272520")
]
}
两个孩子的裁判都会匹配。