CompressorType Enumeration |
Represents the compressor type.
Namespace:
MongoDB.Driver.Core.Compression
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax public enum CompressorType
Public Enumeration CompressorType
Members
| Member name | Value | Description |
---|
| Noop | 0 |
The content of the message is uncompressed. This is realistically only used for testing.
|
| Snappy | 1 |
The content of the message is compressed using snappy.
|
| Zlib | 2 |
The content of the message is compressed using zlib.
|
| ZStandard | 3 |
The content of the message is compressed using zstandard.
|
See Also