Details
-
Task
-
Status: Closed
-
Major - P3
-
Resolution: Won't Fix
-
None
-
None
-
None
Description
Deprecate with an error message that the alternate, undocumented $maxDistance syntax for $near.
Currently, the following syntax:
db.t.find( { loc : { $near : [56, 8, 10] } } )
|
is a synonym for this:
db.t.find( { loc : { $near : [56, 8], $maxDistance:10 } } )
|