Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable thread-local buffer cache for Thread that is used by EventExec…
…utor by default (netty#12158) Motivation: netty#12109 changed the default of using the thread local cache for buffers only for FastThreadLocalThread. While this is good it also means that it would affect everyone that use a custom ThreadFactory when construct the EventLoop / EventExecutor Modifications: Make use of ThreadExecutorMap to check if the Thread is used by any EventExecutor and if so also enable the cache. Result: Fixes netty#12109 (comment)
- Loading branch information