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

Sådan aktiverer du distribueret/clustered cache, når du bruger redis med spring data cache

Aktiver caching i spring boot-appen er meget enkel. Du skal blot følge tre trin.

  • Definer cache-konfiguration
  • Tilføj EnableCaching til enhver konfigurationsklasse
  • Giv en CacheManager bean

Til Redis har vi RedisCacheManager, der kan konfigureres og oprettes.

Cache-konfiguration

@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;
}

Indstil deres værdier via egenskaber 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 oprettet konfigurationen, kan du oprette cache-konfiguration for RedisCacheManger af builder.

@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();
  }
}

Hvis du bruger Redis-klynge, skal du opdatere cache-egenskaber som pr. I denne vil nogle bønner blive primære, hvis du vil have cachespecifikke bønner end at gøre disse metoder private.




  1. redis:sikkerhedskopiering af dump.rdb

  2. Rate-Limit an API (spring MVC)

  3. Fjern en post fra array ved hjælp af MongoDB-Java-driver

  4. Skal du aktivere MongoDB-journalisering?