We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e05972 commit e844d1bCopy full SHA for e844d1b
pkg/dotc1z/decoder.go
@@ -107,6 +107,7 @@ func WithDecoderMaxDecodedSize(n uint64) DecoderOption {
107
// WithDecoderConcurrency sets the number of created decoders.
108
// Default is 1, which disables async decoding/concurrency.
109
// 0 uses GOMAXPROCS.
110
+// -1 uses GOMAXPROCS or 4, whichever is lower.
111
func WithDecoderConcurrency(n int) DecoderOption {
112
return func(o *decoderOptions) error {
113
o.decoderConcurrency = n
pkg/synccompactor/compactor.go
@@ -26,7 +26,6 @@ var tracer = otel.Tracer("baton-sdk/pkg.synccompactor")
26
type CompactorType string
27
28
const (
29
- CompactorTypeNaive CompactorType = "naive"
30
CompactorTypeAttached CompactorType = "attached"
31
)
32
0 commit comments