netty / netty-incubator-codec-quic

Apache License 2.0
303 stars 72 forks source link

Don't allocate via the pool if we not really interested in the sequence #627

Closed normanmaurer closed 11 months ago

normanmaurer commented 11 months ago

Motivation:

Let's just allocate the memory on the stack and not use the pool if we never use the actual value

Modifications:

Just allocate on the stack

Result:

Reduce pool usage if not needed.