We are using spring-data-redis and Jedis for our application. We require some hmget for multiple keys in single request on Redis Cluster then we tried to do it with pipeline feature. But we found that spring-data-redis does not supports the pipeline for Redis Cluster if we use JedisClusterConnection.
Can someone help me out to provide some information related to do pipeline operation on Redis Cluster? Can we get this feature in future with new release?
Right now, we tried to implement pipeline in our code. For that we require some Jedis connection from jedis pool. so we did it by getting JedisCluster native connection from JedisClusterConnection. Now we require Jedis connection from JedisCluster but JedisCluster does not provides connection handler to get connection from slot. For that I already raised the Pull Request in Jedis library and waiting for Review.