MCPcopy
hub / github.com/grafana/tempo / ZstdCodec

Struct ZstdCodec

tempodb/backend/compression.go:16–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16type ZstdCodec struct {
17 encoders sync.Pool // *zstd.Encoder
18 decoders sync.Pool // *zstd.Decoder
19}
20
21func (c *ZstdCodec) Encode(src, dst []byte) ([]byte, error) {
22 e, _ := c.encoders.Get().(*zstd.Encoder)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected