|
SYNOPSISconst bson_t * mongoc_uri_get_compressors (const mongoc_uri_t *uri); PARAMETERS
DESCRIPTIONReturns a bson document with the enabled compressors as the keys or an empty document if no compressors were provided. EXAMPLEmongoc_client_t *client;
mongoc_uri_t *uri;
uri = mongoc_uri_new ("mongodb://localhost/?compressors=zlib,snappy,zstd");
if (bson_has_field (mongoc_uri_get_compressors (uri), "snappy")) {
RETURNSA bson_t * which should not be modified or freed. AUTHORMongoDB, Inc COPYRIGHT2009-present, MongoDB, Inc.
|