Operaciones con hashes en Redis usando RedisTemplate y HashOperations
private RedisTemplate<String, Object> redis;
private HashOperations<String, String, Object> hashOps;
@Before
public void setup() {
ApplicationContext ctx = new ClassPathXmlApplicationContext("spring-redis.xml");
redis = ctx.getBean("redisTemplate", RedisTemplate.class);
hashOps = redis.opsForHash();
...
Publicado el 7-9 20:13