Uses of Class
org.springframework.data.redis.connection.ClusterCommandExecutor
Packages that use ClusterCommandExecutor
Package
Description
Connection package for Jedis library.
Connection package for Lettuce Redis client.
-
Uses of ClusterCommandExecutor in org.springframework.data.redis.connection.jedis
Methods in org.springframework.data.redis.connection.jedis that return ClusterCommandExecutorModifier and TypeMethodDescriptionprotected ClusterCommandExecutorJedisClusterConnection.getClusterCommandExecutor()Constructors in org.springframework.data.redis.connection.jedis with parameters of type ClusterCommandExecutorModifierConstructorDescriptionJedisClusterConnection(redis.clients.jedis.JedisCluster cluster, ClusterCommandExecutor executor) Create newJedisClusterConnectionutilizing native connections viaJedisClusterrunning commands across the cluster via givenClusterCommandExecutor.JedisClusterConnection(redis.clients.jedis.JedisCluster cluster, ClusterCommandExecutor executor, ClusterTopologyProvider topologyProvider) Create newJedisClusterConnectionutilizing native connections viaJedisClusterrunning commands across the cluster via givenClusterCommandExecutorand using the givenClusterTopologyProvider. -
Uses of ClusterCommandExecutor in org.springframework.data.redis.connection.lettuce
Methods in org.springframework.data.redis.connection.lettuce that return ClusterCommandExecutorMethods in org.springframework.data.redis.connection.lettuce with parameters of type ClusterCommandExecutorModifier and TypeMethodDescriptionprotected LettuceClusterConnectionLettuceConnectionFactory.doCreateLettuceClusterConnection(io.lettuce.core.cluster.api.StatefulRedisClusterConnection<byte[], byte[]> sharedConnection, LettuceConnectionProvider connectionProvider, ClusterTopologyProvider topologyProvider, ClusterCommandExecutor clusterCommandExecutor, Duration commandTimeout) Customization hook forLettuceClusterConnectioncreation.Constructors in org.springframework.data.redis.connection.lettuce with parameters of type ClusterCommandExecutorModifierConstructorDescriptionprotectedLettuceClusterConnection(io.lettuce.core.cluster.api.StatefulRedisClusterConnection<byte[], byte[]> sharedConnection, LettuceConnectionProvider connectionProvider, ClusterTopologyProvider clusterTopologyProvider, ClusterCommandExecutor executor, Duration timeout) Creates newLettuceClusterConnectiongiven a sharedStatefulRedisClusterConnectionandLettuceConnectionProviderrunning commands across the cluster via givenClusterCommandExecutor.LettuceClusterConnection(io.lettuce.core.cluster.RedisClusterClient clusterClient, ClusterCommandExecutor executor) Creates newLettuceClusterConnectionwith defaulttimeoutusingRedisClusterClientrunning commands across the cluster via givenClusterCommandExecutor.LettuceClusterConnection(io.lettuce.core.cluster.RedisClusterClient clusterClient, ClusterCommandExecutor executor, Duration timeout) Creates newLettuceClusterConnectionwith given commandtimeoutusingRedisClusterClientrunning commands across the cluster via givenClusterCommandExecutor.LettuceClusterConnection(LettuceConnectionProvider connectionProvider, ClusterCommandExecutor executor) Creates newLettuceClusterConnectionusingLettuceConnectionProviderrunning commands across the cluster via givenClusterCommandExecutor.LettuceClusterConnection(LettuceConnectionProvider connectionProvider, ClusterCommandExecutor executor, Duration timeout) Creates newLettuceClusterConnectionusingLettuceConnectionProviderrunning commands across the cluster via givenClusterCommandExecutor.