sql >> Database teknologi >  >> NoSQL >> Redis

RedisTemplate udløber virker ikke

Jeg konfigurerede følgende kode til at udføre en test på 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);
    }

}

Afhængigt af din Redis-konfiguration er alle Redis-data væk, hvis du genstarter din Redis-instans.

Du bør også tilføje en påstand til expireSession (assertTrue(cache.expireSession(session, duration)); ) for at sikre, at udløbet virkede.




  1. MongoDB Aggregation:Hvordan får man det samlede antal poster?

  2. Selleri med flere django-steder

  3. Højtydende MongoDB-klynger på Azure

  4. Opret et wildcard-tekstindeks i MongoDB