【问题标题】:MongoDB query : $near with aggregationMongoDB 查询:$near 与聚合
【发布时间】:2014-03-06 04:49:31
【问题描述】:

我有一个类似的收藏

{
    "_class" : "User",
    "_id" : "id1",
    "places" : [
            {
                    "_id" : "1",
                    "address" : "test1",
                    "location" : {
                            "latitude" : 1,
                            "longitude" : 1
                    }
            },
            {
                    "_id" : "2",
                    "address" : "test2",
                    "location" : {
                            "latitude" : 2,
                            "longitude" : 2
                    }
            },...
     ]
}

我正在尝试检索用户的每个位置(2 公里范围内)。此查询不起作用:

db.users.ensureIndex({"places.location":"2d"})

db.users.aggregate([ 
   {$match : { "_id" : "id1" } }, 
   {$unwind : "$places"}, 
   {$project:{_id:0, places:1},
   {$match :
      {"places.location" :
             { $near :
                 { $geometry :
                    { type : "2d" ,
                      coordinates : [ -1 , -2 ]
                    }
                 },
                 $maxDistance : 2000
              } 
      }
    }])



Error: Printing Stack Trace
at printStackTrace (src/mongo/shell/utils.js:37:15)
at DBCollection.aggregate (src/mongo/shell/collection.js:897:9)
at (shell):1:10
JavaScript execution failed: aggregate failed: {
    "errmsg" : "exception: $near is not allowed inside of a $match aggregation expression",
    "code" : 16424,
    "ok" : 0

我不知道如何将 $near 与聚合一起使用。

当我尝试时

db.users.find(
                  {
                    "places.location" : 
                        { $near:
                            { $geometry :
                                { type : "2d" ,
                                  coordinates : [ -1 , -2 ] } 
                                },
                                $maxDistance : 2000
                        }
                    }

它返回给我 n 次给定用户(n = 用户的每个地方),这就是为什么我决定使用聚合,但我被卡住了。

提前谢谢

编辑

我试过 $geoNear :

db.users.aggregate(                      
{$geoNear : {
    near: [-1, 1],
    distanceField: "distance",
    query : {"_id" : "id1"},
    uniqueDocs: true,
    maxDistance : 2000  // In the specs, distance has to be in radians 
}})

它会返回给我整个用户(包括所有地方,甚至是最远的地方)。

所以我需要在搜索正确的位置之前修改文档。

  1. 检索正确的用户(匹配)
  2. 放松用户的每一个地方
  3. 然后搜索 2 公里范围内的每个地方(近/近)
  4. 重塑结果(项目)

我期待的结果是这样的:

"result" : [
        {
                "_id" : "1",
                "location" : {
                        "latitude" : 1,
                        "longitude" : 1
                }
        },
        {
                "_id" : "2",
                "location" : {
                        "latitude" : 2,
                        "longitude" : 2
                }
        }
]}

问题是我不能使用$geoNear之前的其他阶段,我的搜索参数必须在“查询”字段中指定。 我收到以下错误:

$geoNear is only allowed as the first pipeline stage

【问题讨论】:

  • 嗨,你能解决这个问题吗?因为我有同样的。

标签: mongodb aggregation-framework


【解决方案1】:

您必须使用$geoNear,并且仅当您使用 V2.4 及更高版本时

db.users.aggregate(   
    {$geoNear : {
        near: [-1, -2],
        distanceField: "distance",
        query : {"_id" : "id1"},
        uniqueDocs: true,
        maxDistance : 2000
}})

编辑:编辑问题后

下面的查询将为您提供位置和距离,但不检索内部(数组元素)_id

db.users.aggregate(   
  {$geoNear : {
    near: [-1, -2],
    distanceField: "distance",
    includeLocs: "location",
    query : {"_id" : "id1"},
    maxDistance : 2000
  }},
  {$project : {"location" : 1, "_id" : 0, "distance" : 1}} 
)

注意添加includeLocs和删除uniqueDocs: true

要同时检索内部 _id,您必须(按照此示例)展开并有条件地进行项目左右,但我认为这不值得,除非您需要地址而不是 _id

【讨论】:

  • 感谢您的回答,我已经尝试过 $geoNear,但无法按我的意愿工作。我用一个问题更新了我的帖子
猜你喜欢
  • 1970-01-01
  • 2019-06-18
  • 1970-01-01
  • 1970-01-01
  • 2021-09-27
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多