Example usage for org.springframework.data.redis.connection.lettuce LettuceConverters toRedisClusterNode

List of usage examples for org.springframework.data.redis.connection.lettuce LettuceConverters toRedisClusterNode

Introduction

In this page you can find the example usage for org.springframework.data.redis.connection.lettuce LettuceConverters toRedisClusterNode.

Prototype

public static RedisClusterNode toRedisClusterNode(
        io.lettuce.core.cluster.models.partitions.RedisClusterNode source) 

Source Link

Usage

From source file:org.springframework.data.redis.connection.lettuce.LettuceClusterConnection.java

@Override
public RedisClusterNode clusterGetNodeForSlot(int slot) {

    return LettuceConverters.toRedisClusterNode(getPartitions().getPartitionBySlot(slot));
}