sql >> Database >  >> NoSQL >> Redis

RedisTemplate verlopen werkt niet

Ik heb de volgende code ingesteld om een ​​test uit te voeren op 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);
    }

}

Afhankelijk van uw Redis-configuratie zijn alle Redis-gegevens verdwenen als u uw Redis-instantie opnieuw opstart.

Je moet ook een bewering toevoegen aan expireSession (assertTrue(cache.expireSession(session, duration)); ) om er zeker van te zijn dat de vervaldatum werkte.




  1. Verwijder element uit geneste array mongodb

  2. Aggregatie met update in mongoDB

  3. MongoDB $atan2

  4. pymongo - dnspython-module moet zijn geïnstalleerd om mongodb+srv:// URI's te gebruiken