sql >> Databasteknik >  >> NoSQL >> Redis

Hur man aktiverar distribuerad/klustrad cache när man använder redis med vårdatacache

Det är väldigt enkelt att aktivera cachning i vårstartappen. Du behöver bara följa tre steg.

  • Definiera cache-konfiguration
  • Lägg till EnableCaching i valfri konfigurationsklass
  • Tillhandahålla en CacheManager-böna

För Redis har vi RedisCacheManager som kan konfigureras och skapas.

Cachekonfiguration

@Configuration
@Getter
@Setter
@ConfigurationProperties(prefix = "cache")
public class CacheConfigurationProperties {
 // Redis host name
  private String redisHost;
 // Redis port
  private int redisPort;
  // Default TTL
  private long timeoutSeconds;
  // TTL per cache, add enties for each cache
  private Map<String, Long> cacheTtls;
}

Ställ in deras värden via egenskaper eller yaml-fil som

cache.redisHost=localhost
cache.redisPort=6379
cache.timeoutSeconds=1000
cache.cacheTtls.cach1=100
cache.cacheTtls.cach2=200

När du har skapat konfigurationen kan du skapa cache-konfiguration för RedisCacheManger av byggare.

@Configuration
@EnableCaching
public class CacheConfig {
  private static RedisCacheConfiguration createCacheConfiguration(long timeoutInSeconds) {
    return RedisCacheConfiguration.defaultCacheConfig()
        .entryTtl(Duration.ofSeconds(timeoutInSeconds));
  }

  @Bean
  public LettuceConnectionFactory redisConnectionFactory(CacheConfigurationProperties properties) {
    RedisStandaloneConfiguration redisStandaloneConfiguration = new RedisStandaloneConfiguration();
    redisStandaloneConfiguration.setHostName(properties.getRedisHost());
    redisStandaloneConfiguration.setPort(properties.getRedisPort());
    return new LettuceConnectionFactory(redisStandaloneConfiguration);
  }

  @Bean
  public RedisCacheConfiguration cacheConfiguration(CacheConfigurationProperties properties) {
    return createCacheConfiguration(properties.getTimeoutSeconds());
  }

  @Bean
  public CacheManager cacheManager(
      RedisConnectionFactory redisConnectionFactory, CacheConfigurationProperties properties) {
    Map<String, RedisCacheConfiguration> cacheConfigurations = new HashMap<>();

    for (Entry<String, Long> cacheNameAndTimeout : properties.getCacheTtls().entrySet()) {
      cacheConfigurations.put(
          cacheNameAndTimeout.getKey(), createCacheConfiguration(cacheNameAndTimeout.getValue()));
    }

    return RedisCacheManager.builder(redisConnectionFactory)
        .cacheDefaults(cacheConfiguration(properties))
        .withInitialCacheConfigurations(cacheConfigurations)
        .build();
  }
}

Om du använder Redis-kluster ska du uppdatera cacheegenskaper enligt det. I detta skulle vissa bönor bli primära om du vill ha cachespecifika bönor än att göra dessa metoder privata.




  1. Kombinera två Redis-instanser till en enda instans med två dbs

  2. Testa tom sträng i mongodb och pymongo

  3. Hur använder man redis PUBLISH/SUBSCRIBE med nodejs för att meddela klienter när datavärden ändras?

  4. Hur man får tillbaka originaldokumentet efter aggregering