@@ -48,7 +48,7 @@ by specifying the algorithms in one of the following ways:
48
48
- Chain the ``compressorList()`` method to the ``MongoClientSettings.builder()`` method.
49
49
- Use the ``compressors`` parameter in your connection URI.
50
50
51
- The following tabs demonstrate how to specify all available compressors
51
+ The following examples demonstrate how to specify all available compressors
52
52
while connecting to MongoDB. Select the :guilabel:`MongoClientSettings` or :guilabel:`Connection URI`
53
53
tab to see the corresponding syntax:
54
54
@@ -61,12 +61,12 @@ If you specify ``zlib`` as one of your compression algorithms, you can also use
61
61
``MongoCompressor.LEVEL`` property to specify a compression level. This option accepts
62
62
an integer value between ``-1`` and ``9``:
63
63
64
- - **-1:** ( Default). zlib uses its default compression level (usually ``6``).
65
- - **0:** No compression.
66
- - **1:** Fastest speed but lowest compression.
67
- - **9:** Best compression but slowest speed.
64
+ - **-1:** Default compression (usually ``6``)
65
+ - **0:** No compression
66
+ - **1:** Fastest speed but lowest compression
67
+ - **9:** Best compression but slowest speed
68
68
69
- The following tabs demonstrate how to specify a compression level for
69
+ The following examples demonstrate how to specify a compression level for
70
70
the ``zlib`` compressor. Select the :guilabel:`MongoClientSettings` or :guilabel:`Connection URI`
71
71
tab to see the corresponding syntax:
72
72
@@ -82,7 +82,7 @@ Snappy and Zstandard depend on open source Java implementations. To learn more
82
82
about these implementations, see the following GitHub repositories:
83
83
84
84
- `snappy-java <https://github.com/xerial/snappy-java>`__
85
- - `zstd-java <https://github.com/luben/zstd-jni>`__
85
+ - `zstd-jni <https://github.com/luben/zstd-jni>`__
86
86
87
87
API Documentation
88
88
-----------------
0 commit comments