![JAR search and dependency download from the Maven repository](/logo.png)
com.github.bootfastconfig.cache.redis.RedisCacheConfigGather Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boot-fast-config-cache Show documentation
Show all versions of boot-fast-config-cache Show documentation
Parent pom providing dependency and plugin management for applications
built with Maven
The newest version!
package com.github.bootfastconfig.cache.redis;
import org.springframework.data.redis.cache.RedisCacheConfiguration;
/**
* The interface Cache config.
*
* @author mister
*/
public interface RedisCacheConfigGather {
/**
* Add redis cache config.
*
* @param redisCacheConfig the redis cache config
*/
default void addRedisCacheConfig(RedisCacheConfig redisCacheConfig) {
}
/**
* Get default redis cache config redis cache configuration.
*
* @return the redis cache configuration
*/
default RedisCacheConfiguration getDefaultRedisCacheConfig() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy