gpt4 book ai didi

node.js - MongoDB:使用 $geoNear 并非所有结果都从查询返回

转载 作者:IT老高 更新时间:2023-10-28 13:22:50 27 4
gpt4 key购买 nike

我收到了这个问题:

 exports.search = (req, res) => {

let lat1 = req.body.lat;
let lon1 = req.body.lng;
let page = req.body.page || 1;
let perPage = req.body.perPage || 10;
let radius = req.body.radius || 100000; // This is not causing the issue, i can remove it and the issue is still here


var options = { page: page, limit: perPage, sortBy: { updatedDate: -1 } }

let match = {}

var aggregate = null;

if (lat1 && lon1) {

aggregate = Tutor.aggregate([
{
"$geoNear": {
"near": {
"type": "Point",
"coordinates": [lon1, lat1]
},
"distanceField": "distance", // this calculated distance will be compared in next section
"distanceMultiplier": 0.001,
"spherical": true,
"key": "loc",
"maxDistance": radius
}
},
{
$match: match
},
{ "$addFields": { "islt": { "$cond": [{ "$lt": ["$distance", "$range"] }, true, false] } } },
{ "$match": { "islt": true } },
{ "$project": { "islt": 0 } }
])
// .allowDiskUse(true);
} else {
aggregate = Tutor.aggregate([
{
$match: match
}
]);
}



Tutor
.aggregatePaginate(aggregate, options, function (err, result, pageCount, count) {

if (err) {
console.log(err)
return res.status(400).send(err);
}
else {

var opts = [
{ path: 'levels', select: 'name' },
{ path: 'subjects', select: 'name' },
{ path: 'assos', select: 'name' }
];
Tutor
.populate(result, opts)
.then(result2 => {
return res.send({
page: page,
perPage: perPage,
pageCount: pageCount,
documentCount: count,
tutors: result2
});
})
.catch(err => {
return res.status(400).send(err);
});
}
})
};

该查询应该检索特定位置周围给定范围内的所有导师(这是导师模型中的一个字段,以公里为单位的整数,表示导师愿意移动多远)。 (lat1, lon1)。

问题是所有文件都没有返回。经过多次测试,我注意到只有距离该位置不到 7.5 公里的导师会被退回,其他导师不会被退回。即使导师在10公里外,射程15公里,也不会因为他超过7.5公里而被退回。

我尝试在两位导师之间切换位置(一位返回,另一位未返回但应该返回),看看这是否是导致问题的唯一原因,并且确实如此。在我切换它们的位置(lng 和 loc)后,之前返回的位置不再是,反之亦然。

我真的不明白为什么会这样。

另外,我知道结果大小小于 16MB,因为我没有得到所有结果,即使使用 allowDiskUse:true。

如果您对我没有得到所有结果的原因有任何其他想法,请不要犹豫!

谢谢!

PS:这是导师模型的一部分,包含相关字段(loc):

import mongoose from 'mongoose';
import validate from 'mongoose-validator';
import { User } from './user';
import mongooseAggregatePaginate from 'mongoose-aggregate-paginate';

var ObjectId = mongoose.Schema.Types.ObjectId;


var rangeValidator = [
validate({
validator: (v) => {
v.isInteger && v >= 0 && v <= 100;
},
message: '{VALUE} is a wrong value for range'
})
];



var tutorSchema = mongoose.Schema({
fullName: {
type: String,
trim: true,
minlength: [1, 'Full name can not be empty'],
required: [true, 'Full name is required']
},
location: {
address_components: [
{
long_name: String,
short_name: String,
types: String
}
],
description: String,
lat: Number,
lng: Number

},
loc: {
type: { type: String },
coordinates: []
},


});

tutorSchema.plugin(mongooseAggregatePaginate);
tutorSchema.index({ "loc": "2dsphere" });
var Tutor = User.discriminator('Tutor', tutorSchema);


module.exports = {
Tutor
};

用户模型使用两个索引。 ID和这个;

db['system.indexes'].find() Raw Output
{
"v": 2,
"key": {
"loc": "2dsphere"
},
"name": "loc_2dsphere",
"background": true,
"2dsphereIndexVersion": 3,
"ns": "verygoodprof.users"
}

最佳答案

我也有类似的问题,在我的情况下,限制有问题

https://docs.mongodb.com/manual/reference/operator/aggregation/geoNear/

默认限制为 100(可选。要返回的最大文档数。默认值为 100)。

如果你愿意,你可以增加限制。希望对你有帮助

关于node.js - MongoDB:使用 $geoNear 并非所有结果都从查询返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52835162/

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