the thing is that the system has many services that contacts my cache service and while using the PooledRedisClientManager the default : MaxWritePoolSize = 10 , MaxReadPoolSize = 10
is not sufficient and i get blocked services and timeout exceptions when my write clients in use reach 10.
the older (non sentinel supported ) code was working well :
_cacheClientManager = new PooledRedisClientManager(rwHosts,roHosts, new RedisClientManagerConfig
{
MaxWritePoolSize = 20 ,
MaxReadPoolSize = 10,
AutoStart = true
});
i did not find a way to configure the same settings of the poolsize with the RedisSentinel