mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
27 lines
593 B
Go
27 lines
593 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package compressions
|
|
|
|
import (
|
|
teaconst "github.com/TeaOSLab/EdgeNode/internal/const"
|
|
"github.com/TeaOSLab/EdgeNode/internal/utils"
|
|
"github.com/andybalholm/brotli"
|
|
"io"
|
|
)
|
|
|
|
var sharedBrotliWriterPool *WriterPool
|
|
|
|
func init() {
|
|
if !teaconst.IsMain {
|
|
return
|
|
}
|
|
|
|
var maxSize = utils.SystemMemoryGB() * 256
|
|
if maxSize == 0 {
|
|
maxSize = 256
|
|
}
|
|
sharedBrotliWriterPool = NewWriterPool(maxSize, brotli.BestCompression, func(writer io.Writer, level int) (Writer, error) {
|
|
return newBrotliWriter(writer, level)
|
|
})
|
|
}
|