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
So in the previous (2.9.x) version the JedisCluster was implementing JedisCommands and in 3.0.x it now implements a different interface JedisClusterCommands which has most of the JedisCommands methods in. Can we have all the common methods extracted to a common interface to both JedisClusterCommands and JedisCommands?
Something like:
TOP_INTF
/ \
JedisCommands JedisClusterCommands
The text was updated successfully, but these errors were encountered:
Hey guys,
i'm having some trouble migrating this project:
https://github.com/jlinn/quartz-redis-jobstore
to jedis 3.0.x
So in the previous (2.9.x) version the
JedisCluster
was implementingJedisCommands
and in 3.0.x it now implements a different interfaceJedisClusterCommands
which has most of theJedisCommands
methods in. Can we have all the common methods extracted to a common interface to bothJedisClusterCommands
andJedisCommands
?Something like:
The text was updated successfully, but these errors were encountered: