おそらく通常のクエリに加えて$where
を使用して検索し、まだサーバ上で物事を保つためにベスト:
db.getCollection('collection').find({
"array": {
"$elemMatch": { "field": "BCD", "enabled": "true" },
},
"$where": function() {
return this.array.map((e,i) => Object.assign(e,{ i }))
.filter(e => e.field === "BCD" && e.enabled === "true")
.map(e => e.i)[0] <=
this.array.map(e => e.enabled).indexOf("true")
}
})
そして、あなたは$indexOfArray
と$range
をサポートするMongoDBの3.4を持っている場合、それは長く見えるかもしれませんしかし実際には、最も効率的な$redact
で:だから
db.getCollection('collection').aggregate([
{ "$match": {
"array": {
"$elemMatch": { "field": "BCD", "enabled": "true" },
}
}},
{ "$redact": {
"$cond": {
"if": {
"$lte": [
{ "$arrayElemAt": [
{ "$map": {
"input": {
"$filter": {
"input": {
"$map": {
"input": {
"$zip": {
"inputs": [
"$array",
{ "$range": [0, { "$size": "$array" }] }
]
}
},
"as": "a",
"in": {
"field": { "$arrayElemAt": [ "$$a.field", 0 ] },
"enabled": { "$arrayElemAt": [ "$$a.enabled", 0 ] },
"index": { "$arrayElemAt": [ "$$a", 1 ] }
}
}
},
"as": "a",
"cond": {
"$and": [
{ "$eq": [ "$$a.field", "BCD" ] },
{ "$eq": [ "$$a.enabled", "true" ] }
]
}
}
},
"as": "a",
"in": "$$a.index"
}},
0
]},
{ "$indexOfArray": [ "$array.enabled", "true" ] }
]
},
"then": "$$KEEP",
"else": "$$PRUNE"
}
}}
])
本当にことを強制する実際のクエリ操作はありませんが、これらの例の両方がOPPOとして「サーバー上の」選択を保ちます電線を介してクライアントにデータを送信してからフィルタリングすることに従事しました。
あなたがしなければ、それは一種の最初の場所でデータベースを使用する目的を否定するということなので。だからあなたは本当にこれがサーバー上で起こることを望んでいます。