feat(backend): use zstd as a default compression algo (#2132)
This commit is contained in:
parent
fcc0195528
commit
6f3a440511
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ type Config struct {
|
|||
MaxFileSize int64 `env:"MAX_FILE_SIZE,default=524288000"`
|
||||
UseSort bool `env:"USE_SESSION_SORT,default=true"`
|
||||
UseProfiler bool `env:"PROFILER_ENABLED,default=false"`
|
||||
CompressionAlgo string `env:"COMPRESSION_ALGO,default=gzip"` // none, gzip, brotli, zstd
|
||||
CompressionAlgo string `env:"COMPRESSION_ALGO,default=zstd"` // none, gzip, brotli, zstd
|
||||
}
|
||||
|
||||
func New() *Config {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue