While answering a previous question (
https://groups.google.com/forum/#!topic/netty/97k_NbMsZkw) Norman mentioned that the default PooledByteBufAllocator configuration will not pool buffers with a size of 350k.
With the default configuration the type of ByteBuf returned by PooledByteBufAllocator is PooledUnsafeDirectByteBuf. Does this mean that the buffer returned is actually pooled?
In PooledByteBufAllocator I noticed the system property io.netty.allocator.maxCachedBufferCapacity with a default value of 32k. Is this the default max size of a pooled ByteBuf?
Could you please clarify the default behaviour of PooledButeBufAllocator in relation to allocating buffers of size 350k - 500k. What system properties do I need to set to achieve this?
Thanks,
Mark