发布于 2015-09-14 15:07:14 | 144 次阅读 | 评论: 0 | 来源: 网络整理
1.4 新版功能.
This specifies a circle shape for the $within operator in geospatial queries. To define the bounds of a query using $center, you must specify:
- the center point, and
- the radius
Considering the following example:
db.collection.find( { location: { $within: { $center: [ [0,0], 10 ] } } } );
The above command returns all the documents that fall within a 10 unit radius of the point [0,0].
在 2.2.3 版更改: Before 2.2.3, a geospatial index must exist on a field holding coordinates before using any of the geolocation query operators. After 2.2.3, applications may use geolocation query operators without having a geospatial index; however, geospatial indexes will support much faster geospatial queries than the unindexed equivalents.
注解
A geospatial index must exist on a field and the field must hold coordinates before you can use any of the geolocation query operators.