Redis
 sql >> Base de Dados >  >> NoSQL >> Redis

A expiração do RedisTemplate não funciona


Eu configurei o seguinte código para realizar um teste em getExpire() (jedis 2.5.2, spring-data-redis 1.4.2.RELEASE):
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = DemoApplication.class)
public class DemoApplicationTests {

    @Autowired
    private RedisTemplate<String, String> template;

    @Test
    public void contextLoads() {

        template.getConnectionFactory().getConnection().flushAll();

        assertFalse(template.hasKey("key"));
        assertFalse(template.expire("key", 10, TimeUnit.MINUTES));
        assertEquals(0, template.getExpire("key", TimeUnit.MINUTES).longValue());

        template.opsForHash().put("key", "hashkey", "hashvalue");

        assertTrue(template.hasKey("key"));
        assertTrue(template.expire("key", 10, TimeUnit.MINUTES));
        assertTrue(template.getExpire("key", TimeUnit.MINUTES) > 8);
    }

}

Dependendo da configuração do Redis, todos os dados do Redis desaparecerão se você reiniciar sua instância do Redis.

Você também deve adicionar uma declaração a expireSession (assertTrue(cache.expireSession(session, duration)); ) para ter certeza, a expiração funcionou.