MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

MongoDB Geospatial Query Count Problem (immer 100)

Versuchen Sie "innerhalb" statt "nahe". Das funktioniert für mich,

center = [50, 50];
radius = 1/111.12; //convert it to KM.

db.places.count({"loc" : {"$within" : {"$center" : [center, radius]}}})

Ich habe dies unter https://jira.mongodb.org/browse/SERVER-856