Skip to content

Commit

Permalink
chore: mrs use best compression
Browse files Browse the repository at this point in the history
  • Loading branch information
H1JK committed Sep 7, 2024
1 parent faaa90f commit ade4234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/provider/mrs_converter.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func ConvertToMrs(buf []byte, behavior P.RuleBehavior, format P.RuleFormat, w io
}

var encoder *zstd.Encoder
encoder, err = zstd.NewWriter(w)
encoder, err = zstd.NewWriter(w, zstd.WithEncoderLevel(zstd.SpeedBestCompression))
if err != nil {
return err
}
Expand Down

0 comments on commit ade4234

Please sign in to comment.