So I want to do geoNear using runCommand on mongodb and I want the results to be sorted by date.
I know how to do the first part
db.users.runCommand({'geoNear' :"users",'near' : [-76.483999, 42.402794], 'spherical' : true, 'maxDistance' : 20/6378 })
but how do i get the results such that it is ordered by created_at? If I were to use Mongo gem to do this, the query would look like
User.database.command({'geoNear'=>"users",'near' => [-122, 37]}, 'spherical' => true, 'maxDistance' => 20/6378)
Still, I do not know how to sort it by date. I was considering of using an index on created_at in this case. I have indices on both location and created_at but the results are still not returned by order of created_at date. Does anyone have any clue on how to do this?
I dont think its possible to add sort to geonear command, as per the link
by default it sorted by the distance.
Alternatively you can write your spherical query like this
your ruby mongomapper equivalent might be (not sure, better verify)