我想在数据库中查询MongoDB中最接近我的前100个文档。一旦我有最近的100个文档,我想按文档中的自定义字段对它们进行排序。例如createdAt
或points
。似乎$near
是我想要的,但他们的文档说:
When using sort() with geospatial queries, consider using $geoWithin operator, which does not sort documents, instead of $near.
所以看起来他们建议使用$geoWithin
,但我不想将搜索限制在特定范围内。建议?