mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-15 00:13:30 +01:00
20 lines
515 B
Go
20 lines
515 B
Go
|
package encoding
|
||
|
|
||
|
import (
|
||
|
"github.com/valyala/gozstd"
|
||
|
)
|
||
|
|
||
|
// CompressZSTDLevel appends compressed src to dst and returns
|
||
|
// the appended dst.
|
||
|
//
|
||
|
// The given compressLevel is used for the compression.
|
||
|
func CompressZSTDLevel(dst, src []byte, compressLevel int) []byte {
|
||
|
return gozstd.CompressLevel(dst, src, compressLevel)
|
||
|
}
|
||
|
|
||
|
// DecompressZSTD decompresses src, appends the result to dst and returns
|
||
|
// the appended dst.
|
||
|
func DecompressZSTD(dst, src []byte) ([]byte, error) {
|
||
|
return gozstd.Decompress(dst, src)
|
||
|
}
|