const bson_t *
Contents
Copyright
2009-present, MongoDB, Inc.
1.30.4 Jun 08, 2025 MONGOC_URI_GET_COMPRESSORS(3)
Description
Returns a bson document with the enabled compressors as the keys or an empty document if no compressors
were provided.
Example
mongoc_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")) {
/* snappy enabled */
}
Parameters
• uri: A mongoc_uri_t.
Returns
A bson_t * which should not be modified or freed.
Synopsis
const bson_t *
mongoc_uri_get_compressors (const mongoc_uri_t *uri);
