gpt4 book ai didi

mongodb - 两个 $Geonear 合计 Mongo

转载 作者:行者123 更新时间:2023-12-05 07:02:59 28 4
gpt4 key购买 nike

该集合有两个地理字段:fromLocation 和 toLocation。但只允许使用一个 Geonear。该集合看起来像:

...............
fromLocation: {
type: { type: String, default: "Point" },
coordinates: [Number],
},
toLocation: {
type: { type: String, default: "Point" },
coordinates: [Number],
},
.........................................

请给出示例代码,如何使用 Geonear 按两个字段进行搜索。我的一个字段搜索代码:

[
{
'$geoNear': {
near: [Object],
key: 'fromLocation',
distanceField: 'fromDistance',
spherical: true
}
},
{
'$match': {
status: 2,
'from.data.city_fias_id': '27c5bc66-61bf-4a17-b0cd-ca0eb64192d6',
'to.data.city_fias_id': '27c5bc66-61bf-4a17-b0cd-ca0eb64192d6',
'car.paymentInfo.id': [Object],
budget: [Object]
}
},
{
'$lookup': {
from: 'users',
localField: 'autor',
foreignField: '_id',
as: 'autor'
}
},
{ '$unwind': '$autor' },
{ '$addFields': { sortBudget: [Object] } },
{ '$sort': { sortBudget: 1 } },
{ '$group': { _id: null, total: [Object], results: [Object] } },
{ '$project': { total: 1, results: [Object] } }
]

最佳答案

距离计算相当简单。将 $geoNear 用于更具选择性的条件以利用地理索引,将 $match 和 $expr 用于第二个条件。

关于mongodb - 两个 $Geonear 合计 Mongo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63409012/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com