sql >> Databasteknik >  >> NoSQL >> Redis

hur man konfigurerar olika ttl för varje redis-cache när man använder @cacheable i springboot2.0

Du kan konfigurera olika utgångstider för varje cache med endast en CacheManager genom att skapa olika konfigurationer för varje cache och lägga dem i en karta som du skapar CacheManager med.

Till exempel:

@Bean
RedisCacheWriter redisCacheWriter() {
    return RedisCacheWriter.lockingRedisCacheWriter(jedisConnectionFactory());
}

@Bean
RedisCacheConfiguration defaultRedisCacheConfiguration() {
    return RedisCacheConfiguration.defaultCacheConfig().entryTtl(Duration.ofSeconds(defaultCacheExpiration));
}

@Bean
CacheManager cacheManager() {
    Map<String, RedisCacheConfiguration> cacheNamesConfigurationMap = new HashMap<>();
    cacheNamesConfigurationMap.put("cacheName1", RedisCacheConfiguration.defaultCacheConfig().entryTtl(Duration.ofSeconds(ttl1)));
    cacheNamesConfigurationMap.put("cacheName2", RedisCacheConfiguration.defaultCacheConfig().entryTtl(Duration.ofSeconds(ttl2)));
    cacheNamesConfigurationMap.put("cacheName3", RedisCacheConfiguration.defaultCacheConfig().entryTtl(Duration.ofSeconds(ttl3)));

    return new RedisCacheManager(redisCacheWriter(), defaultRedisCacheConfiguration(), cacheNamesConfigurationMap);
}


  1. ConnectionMultiplexer.Anslutning avbryts vid anslutning till redis-server

  2. Hur kan jag bläddra i eller fråga efter live MongoDB-data?

  3. Slumpmässig post från MongoDB

  4. Cloudera Operational Database Repplication i ett nötskal