Skip to content
Advertisement

Get Set value from Redis using RedisTemplate

I am able to retrieve values from Redis using Jedis:

JavaScript

But when I am trying to use Spring’s RedisTemplate , I am not getting any data. My data is stored in Redis as a Set.

JavaScript

Can someone please point out to me what am I missing?

EDIT : My xml config for RedisTemplate.

JavaScript

Advertisement

Answer

In short

You have to configure serializers.

Explanation

The Redis template uses serializers for keys, values and hash keys/values. Serializers are used to convert the Java input into the representation that is stored within Redis. If you do not configure anything, the serializer defaults to JdkSerializationRedisSerializer. So if you ask for a key key in your Java code, the serializer converts it to

JavaScript

and Spring Data Redis uses those bytes as the key to query Redis.

You can add data with Spring Data Redis and query it using the redis-cli:

JavaScript

and then in the redis-cli

JavaScript

As you see, the String and the Date are serialized into some crazy bytes that represent a Java-serialized object.

Your code suggests you want to store String-based keys and values. Just set the StringRedisSerializer in your RedisTemplate

Java configuration

JavaScript

XML configuration

JavaScript

The output after running your code looks like then:

JavaScript

Spring Data Redis has some interesting serializers that allow message exchange between various systems. You can choose either from the built-in serializers

  • JacksonJsonRedisSerializer
  • Jackson2JsonRedisSerializer
  • JdkSerializationRedisSerializer (default)
  • OxmSerializer
  • GenericToStringSerializer

or create your own.

I used Spring Data Redis 1.5.1.RELEASE and jedis 2.6.2 to verify the result of your question. HTH, Mark

Further read:

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement