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
I would like to request the addition of a means to set / configure the JedisClientConfig.clientSetInfoConfig property.
As of right now, there is not a clear path to set clientSetInfoConfig on the JedisClientConfig instance within the JedisConnectionFactory. This property is already present on currently released Jedis artifacts Jedis v5.1.5 Example.
The use case for this request is that in some instances, it would be useful to set this property to disabled, (ClientSetInfoConfig.DISABLED) instead of the ClientSetInfoConfig.DEFAULT value.
The text was updated successfully, but these errors were encountered:
mp911de
changed the title
Add Support to Jedis for JedisClientConfig.clientSetInfoConfig property
Add builder customizer for DefaultJedisClientConfig.BuilderSep 27, 2024
Looking at the configuration, we're creating JedisClientConfig in several places so it would be best to introduce a customizer for DefaultJedisClientConfig.Builder that allows you to control additional properties on the client config.
Thanks!
Agree your suggested solution sounds like a better fit for this scenario & would help with future-proofing.
This seems like it could also potentially address issue 2972 as well. (Or at least as a temporary measure until new config options are explicitly added)
…ig customization.
We now support customization of Jedis' JedisClientConfig that is used for various client configurations for setting extended properties that Spring Data Redis doesn't configure itself.
Closes#3007
I would like to request the addition of a means to set / configure the
JedisClientConfig.clientSetInfoConfig
property.As of right now, there is not a clear path to set
clientSetInfoConfig
on theJedisClientConfig
instance within theJedisConnectionFactory
. This property is already present on currently released Jedis artifacts Jedis v5.1.5 Example.The use case for this request is that in some instances, it would be useful to set this property to disabled, (
ClientSetInfoConfig.DISABLED
) instead of theClientSetInfoConfig.DEFAULT
value.The text was updated successfully, but these errors were encountered: