↧
Answer by mp911de for RedisTemplate expire doesn't work
I set up following code to perform a test on getExpire() (jedis 2.5.2, spring-data-redis 1.4.2.RELEASE): @RunWith(SpringJUnit4ClassRunner.class) @SpringApplicationConfiguration(classes =...
View ArticleRedisTemplate expire doesn't work
I'm trying to test expire method in RedisTemplate. For example, I store session in redis, and than try to retrieve session and check that values are the same. For expire session I use expire() method...
View Article