MongoDB查询:$ near与聚合 [英] MongoDB query : $near with aggregation

查看:116
本文介绍了MongoDB查询:$ near与聚合的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个看起来像这样的收藏

I have a collection that looks like that

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

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

I am trying to retrieve every place of a user (in a range of 2 km). This query doesn't work :

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.

I don't know how to use $near with aggregation.

当我尝试

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

它返回给定用户n次的n次(n =用户的每个位置),这就是为什么我决定使用聚合,但我被困住的原因.

It returns me n times the given user (n = each place of the user), this is why i have decided to use aggregation, but i'm stuck.

提前谢谢

编辑

我尝试了$ geoNear:

I tried $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 
}})

它会返回我整个用户(包括所有地点,甚至是远处的地方).

and it returns me the whole user (with all the places, even the far ones).

因此,在搜索正确的位置之前,我需要重新整理文档.

So I need to rework the document before I search for the correct places.

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

我期望的结果是:

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

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

The problem is that I can't use other stages before $geoNear, my search parameters have to be specified in the "query" field. I get the following error :

$geoNear is only allowed as the first pipeline stage

推荐答案

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

You will have to use $geoNear, and only if you are using V2.4 onward

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

编辑问题后

波纹管查询将为您提供位置和距离,但不会检索内部(数组元素)_id

Edit : after edit to question

The bellow query will give you location and distance, but doesn't retrieve the internal (array element) _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

To also retrieve the internal _id, you will have to (following this example) unwind and conditionally project or so, but I don't think it worth it, unless you need the address instead of the _id

这篇关于MongoDB查询:$ near与聚合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆