You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently MultiClusterPooledConnectionProvider (redis.clients.jedis.providers.MultiClusterPooledConnectionProvider) creates new instance of ConnectionPool for each of configured clusters (MultiClusterClientConfig.GetClusterConfig()). This pool is created without providing any pool specific configuration (using constructor without JedisPoolConfig param), making it impossible to specify a number of pool specific settings eg maximum number of connections.
Please add possibility of passing JedisPoolConfig to be used during construction of those pools, preferably on the per cluster basis (ClusterConfig seems like a fitting place to pass it, but Im not sure)
The text was updated successfully, but these errors were encountered:
I would like to be able to set optional JedisPoolConfig member in ClusterConfig object (just as I set HostAndPort and JedisClientConfig). Then if its set it should be passed on when creating ConnectionPool for this cluster (as an additional constructor parameter compared to current one).
Currently MultiClusterPooledConnectionProvider (redis.clients.jedis.providers.MultiClusterPooledConnectionProvider) creates new instance of ConnectionPool for each of configured clusters (MultiClusterClientConfig.GetClusterConfig()). This pool is created without providing any pool specific configuration (using constructor without JedisPoolConfig param), making it impossible to specify a number of pool specific settings eg maximum number of connections.
Please add possibility of passing JedisPoolConfig to be used during construction of those pools, preferably on the per cluster basis (ClusterConfig seems like a fitting place to pass it, but Im not sure)
The text was updated successfully, but these errors were encountered: