Skip to content

Commit

Permalink
Tweak options comment
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Lord <[email protected]>
  • Loading branch information
mattlord committed Nov 13, 2024
1 parent 71adf32 commit e2490f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/mysql/binlog_event_compression.go
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ func (dp *decoderPool) Get(reader io.Reader) (*zstd.Decoder, error) {
}
} else {
// Use the minimum amount of memory we can in processing the transaction by
// setting lowMem to true and limiting the window concurrency to 1 so that
// setting lowMem to true and limiting the decoder concurrency to 1 so that
// there's no async decoding of multiple windows or blocks.
d, err := zstd.NewReader(nil, zstd.WithDecoderLowmem(true), zstd.WithDecoderConcurrency(1))
if err != nil { // Should only happen e.g. due to ENOMEM
Expand Down

0 comments on commit e2490f1

Please sign in to comment.