When dealing with strings with Spring Data for Redis, I noticed the following behavior:
Given the code below:
template.opsForValue().set("person", "value");
it only works when I'm using an instance of StringRedisTemplate, and not when I'm using an instance of RedisTemplate. Should'nt it work with RedisTemplate since it aggregates all the operations for all the Redis data types?