MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Como usar o MongoDB GeoSpatial Index em C++


Você pode usar mongocxx::options::find::limit . Verifique também mongocxx::collection::find . O seguinte deve funcionar:
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);