Salut,
I have a question about Controller.setAllowContextCaching. It enables caching
of NIOContext. NIOContext is cached by ConcurrentLinkedQueuePool which is
implemented upon basically ConcurrentLinkedQueue.
I was wondering if there would be possibilities of potential memory leak
if Controller.setAllowContextCaching is enabled. That is because
size of ConcurrentLinkedQueue is unlimited, so capacity of
ConcurrentLinkedQueuePool can become bigger and bigger if server runs
for a long time.
Is this correct?
Minoru