File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 81
81
statelessDecoder * zstd.Decoder
82
82
83
83
// A pool of stateful decoders for larger payloads that we want to
84
- // stream. The number of large (> zstdInMemoryDecompressorMaxSize )
84
+ // stream. The number of large (> ZstdInMemoryDecompressorMaxSize )
85
85
// payloads should typically be relatively low, but there may be times
86
86
// where there are many of them -- and users like vstreamer may have
87
87
// N concurrent streams per tablet which could lead to a lot of
@@ -271,7 +271,7 @@ func (tp *TransactionPayload) decode() error {
271
271
}
272
272
273
273
// decompress decompresses the payload. If the payload is larger than
274
- // zstdInMemoryDecompressorMaxSize then we stream the decompression via
274
+ // ZstdInMemoryDecompressorMaxSize then we stream the decompression via
275
275
// the package's pool of zstd.Decoders, otherwise we use in-memory
276
276
// buffers with the package's concurrent statelessDecoder.
277
277
// In either case, we setup the reader that can be used within the
You can’t perform that action at this time.
0 commit comments