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

So verwenden Sie den MongoDB GeoSpatial Index in C++

Sie können mongocxx::options::find::limit . Siehe auch mongocxx::collection::find . Folgendes sollte funktionieren:

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);