Is the redisson client thread-safe? In my application, I would like to maintain one client object and let all the threads use this to get/put to Redis. In the config, there are two parameters threads
and nettyThreads
. Do these parameters help create a connection pool? If yes, which among these should I use if my use-case is primarily simple get/put operations on Redisson objects?
Also, are these connections active throughout the life of the RedissonClient?