refactor(compress): extract 128 bytes threshold to MinCompressSize constant

This commit is contained in:
duorameng
2026-07-09 22:01:22 +08:00
parent b67fa5bd58
commit f0967abc6f
2 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -268,7 +268,7 @@ func (l *TinyLog) CompressAndCleanup() (string, error) {
size := stat.Size()
// 如果日志极短,免去压缩和 Base64 编码,直接以 raw: 明文形式返回
if size <= 128 {
if size <= int64(utils.MinCompressSize) {
content, err := io.ReadAll(f)
if err != nil {
return "", err
+6 -5
View File
@@ -12,8 +12,9 @@ import (
)
const (
zstdPrefix = "zstd:"
rawPrefix = "raw:"
zstdPrefix = "zstd:"
rawPrefix = "raw:"
MinCompressSize = 128
)
var zlibWriterPool = sync.Pool{
@@ -74,14 +75,14 @@ func initZstd() {
})
}
// CompressToBase64 compresses data using zstd and encodes to base64 with a prefix (uses raw for data under 128 bytes)
// CompressToBase64 compresses data using zstd and encodes to base64 with a prefix (uses raw for data under MinCompressSize bytes)
func CompressToBase64(data string) (string, error) {
if data == "" {
return "", nil
}
// 小于等于 128 字节,不需要压缩,直接前缀明文保存
if len(data) <= 128 {
// 小于等于阈值,不需要压缩,直接前缀明文保存
if len(data) <= MinCompressSize {
return rawPrefix + data, nil
}