My application is using Netty 4.1.6.Final and Lettuce 4.3.0, Async Http Client 2.1.0
Lettuce 4.3.0 also relies on netty 4.1.6.Final. Async Http Client 4.3.0 also relies on netty 4.1.4.Final.
Now I see Lettuce creates its thread pool. Async Http Client also creates its thread pool. And my application creates another thread pool for Netty.
Is it possible to share the same NioEventLoopGroup
cross all the component to reduce thread number?
Async Http Client
Lettuce
Add
RedisEventLoopGroupProvider
classInitialize in this way