Как настроить redis-cluster при использовании spring-data-redis 1.7.0.M1

Я использую spring-data-redis версии 1.7.0.M1 и jedis версии 2.8.0. Вот моя конфигурация

<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
    <property name="connectionFactory" ref="redisConnectionFactory"></property>
    <property name="keySerializer">
        <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/>
    </property>
    <property name="hashKeySerializer">
        <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/>
    </property>
    <property name="valueSerializer">
        <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/>
    </property>
    <property name="hashValueSerializer">
        <bean class="org.springframework.data.redis.serializer.JdkSerializationRedisSerializer"/>
    </property>
</bean>

и использовать test redisTemplate.opsForValue (). get ("foo")】 для проверки

бросить исключение

 org.springframework.dao.InvalidDataAccessApiUsageException: MOVED 12182 192.168.1.223:7002; nested exception is redis.clients.jedis.exceptions.JedisMovedDataException: MOVED 12182 192.168.1.223:7002

Как настроить redis-cluster при использовании spring-data-redis 1.7.0.M1?

Ответы на вопрос(1)

Ваш ответ на вопрос