MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Comment utiliser MongoDB GeoSpatial Index en C++

Vous pouvez utiliser mongocxx::options::find::limit . Vérifiez également mongocxx::collection::find . Ce qui suit devrait fonctionner :

mongocxx::options::find opts;
opts.limit(10);

mongocxx::cursor cursor = coll.find(document{} << "loc" << open_document 
    << "$near" << bsoncxx::builder::stream::open_array 
    << lon << lat << bsoncxx::builder::stream::close_array 
    << close_document << finalize, opts);