Click or drag to resize

CompressorType Enumeration

Represents the compressor type.

Namespace:  MongoDB.Driver.Core.Compression
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public enum CompressorType
Members
  Member nameValueDescription
Noop0 The content of the message is uncompressed. This is realistically only used for testing.
Snappy1 The content of the message is compressed using snappy.
Zlib2 The content of the message is compressed using zlib.
ZStandard3 The content of the message is compressed using zstandard.
See Also