문법은 MongoShell과 똑같지만 다시 한번 remind한다는 생각으로 작성해 보았다.
db.collection.aggregate(pipeline, options)
mydb.mycollection.aggregate([
{‘$match’ : {‘$text’ : {‘$search’ : ‘ value ’}}},
{‘$sort’ : SON([(‘ field ’, 1)])}, # from bson.son import SON
{‘$project’ : {‘ field1 ’ : 1, ‘ field2 ’ : 1, ‘ field3 ’ : 0}}
])
Python의 Dictionary는 순서가 없이 저장된다. 평소에는 별 문제가 없을 수도 있으나, sorting과 같이 먼저 정렬이 되어야 하는 key와 나중에 정렬이 되는 key를 선택할 시에는 문제가 된다. 아래의 링크를 타고 BSON에 대해 더 자세히 알아보자.
mydb.mycollection.aggregate([{
‘$geoNear’ : {
‘near’ : { type: ‘ value ’, ‘coordinates’: [ longtitude , latitude ] },
‘distanceField’ : ‘ stringvalue ’,
‘query: {key:value},
‘maxDistance’ : value
}}])