netty 的 UnPooled ByteBuf 需要引用计数吗?

Do netty's UnPooled ByteBuf need Reference counted?

Pooled ByteBuf 需要 return 当与其关联的引用计数达到 0 时,根据 http://netty.io/wiki/reference-counted-objects.html,But UnPooled 的 ByteBuf alloc 有何作用?

是的,有引用计数让我们及时释放直接内存。