netty5/microbench
Norman Maurer 2aef4a504f Minimize object allocation when calling AbstractByteBuf.toString(..., Charset)
Motivation:

Calling AbstractByteBuf.toString(..., Charset) is used quite frequently by users but produce a lot of GC.

Modification:

- Use a FastThreadLocal to store the CharBuffer that are needed for decoding.
- Use internalNioBuffer(...) when possible

Result:

Less object creation / Less GC
2015-10-15 17:51:57 +02:00
..
src Minimize object allocation when calling AbstractByteBuf.toString(..., Charset) 2015-10-15 17:51:57 +02:00
pom.xml Allow to disable reference count checks on every access of the ByteBuf 2015-10-15 10:21:16 +02:00
README.md Fix wiki link 2014-02-14 12:04:12 -08:00

Microbenchmark tests

See our wiki page.