So I have a project where I'm using the Spring-Data-Redis
to cache some data. The Spring-Data-Redis
is setup with Jedis using Bean Configuration.
I looked for the JedisPoolConfig
parameters that can be modified to control the behavior of my Caching and App.
I will like to know the use of the property, blockWhenExhausted
, which is part of the configurable properties.
The default value is said to be true
, what behaviour will this default value invoke?
If the value is changed to false
, what behaviour will this bring it?