sql >> Databáze >  >> NoSQL >> Redis

Jak povolit distribuovanou/clusterovou mezipaměť při použití redis s mezipamětí jarních dat

Povolit ukládání do mezipaměti v jarní spouštěcí aplikaci je velmi jednoduché. Stačí provést tři kroky.

  • Definujte konfiguraci mezipaměti
  • Přidejte EnableCaching do libovolné třídy konfigurace
  • Poskytněte objekt CacheManager

Pro Redis máme RedisCacheManager, který lze konfigurovat a vytvářet.

Konfigurace mezipaměti

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

Nastavte jejich hodnoty pomocí vlastností nebo souboru yaml jako

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

Jakmile vytvoříte konfiguraci, můžete pomocí builderu vytvořit konfiguraci mezipaměti pro RedisCacheManger.

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

Pokud používáte cluster Redis, aktualizujte vlastnosti mezipaměti podle toho. V tomto by se některé fazole staly primárními, pokud chcete ukládat do mezipaměti konkrétní beany, než aby byly tyto metody soukromé.




  1. Mongodb -- zahrnout nebo vyloučit určité prvky pomocí ovladače c#

  2. Přístup k redis lokálně na dockeru - docker compose

  3. Jak funguje převzetí služeb při selhání ServiceStack PooledRedisClientManager?

  4. Mongoose vždy vrací prázdné pole NodeJS