Aggregate Framework 에 대한 간단한 설명이 첨부되어야 함.
개념
위에 이미지를 1. $match, 2. group stage 이런식으로 하는것도 좋을 거 같네요
Aggregation Framework
Syntax
db.collection.aggregate(pipeline, options)
Example
mydb.mycollection.aggregate([
{‘$match’ : {‘$text’ : {‘$search’ : ‘ value ’}}},
{‘$sort’ : SON([(‘ field ’, 1)])}, # from bson.sonimport SON
{‘$project’ : {‘ field1 ’ : 1, ‘ field2 ’ : 1, ‘ field3 ’ : 0}}
])
Aggregate with geoNear
아직 구현이 덜 된 건지 index를 활용을 못해서 그런지 몰라도 aggregation framework에서 공간 질의에 대해서는 아직 지원이 확실하진 않다.
GeoNear 질의는 일반 aggregate와 문법이 조금은 다르기 때문에 작성해 본다.
only use $geoNearas the first stage of a pipeline
mydb.mycollection.aggregate([{
'geoNear' : { 'near' : { 'type': 'value', 'coordinates': [ longtitude, latitude ] },
'distanceField' : 'stringvalue', 'query': {key:value},
'maxDistance' : value }}])