I am using Redission for locking purpose in spring which have the maven dependency version of 3.5.3 and netty-all dependency version of 4.1.22.final. But my Java VisualVM showing that redission-netty thread is always in running stage . Can someone tell me the reason behind this.
Asked
Active
Viewed 649 times
0
-
Did you find anything related to this? – Mdumanoj Oct 14 '20 at 08:04
1 Answers
0
Did you call Redisson.shutdown
method during application shutdown process?

Nikita Koksharov
- 10,283
- 1
- 62
- 71
-
So all the 32 threads (by default) will be in `RUNNING` state until I call `Redisson.shutdown`? – Mdumanoj Oct 14 '20 at 08:09
-