Uses of Class
org.redisson.spring.cache.CacheConfig
-
Packages that use CacheConfig Package Description org.redisson.spring.cache -
-
Uses of CacheConfig in org.redisson.spring.cache
Methods in org.redisson.spring.cache that return CacheConfig Modifier and Type Method Description protected CacheConfig
RedissonSpringCacheManager. createDefaultConfig()
Methods in org.redisson.spring.cache that return types with arguments of type CacheConfig Modifier and Type Method Description static Map<String,? extends CacheConfig>
CacheConfig. fromJSON(File file)
Read config objects stored in JSON format fromFile
static Map<String,? extends CacheConfig>
CacheConfig. fromJSON(InputStream inputStream)
Read config objects stored in JSON format fromInputStream
static Map<String,? extends CacheConfig>
CacheConfig. fromJSON(Reader reader)
Read config objects stored in JSON format fromReader
static Map<String,? extends CacheConfig>
CacheConfig. fromJSON(String content)
Read config objects stored in JSON format fromString
static Map<String,? extends CacheConfig>
CacheConfig. fromJSON(URL url)
Read config objects stored in JSON format fromURL
Map<String,CacheConfig>
CacheConfigSupport. fromJSON(File file)
Map<String,CacheConfig>
CacheConfigSupport. fromJSON(InputStream inputStream)
Map<String,CacheConfig>
CacheConfigSupport. fromJSON(Reader reader)
Map<String,CacheConfig>
CacheConfigSupport. fromJSON(String content)
Map<String,CacheConfig>
CacheConfigSupport. fromJSON(URL url)
static Map<String,? extends CacheConfig>
CacheConfig. fromYAML(File file)
Read config objects stored in YAML format fromFile
static Map<String,? extends CacheConfig>
CacheConfig. fromYAML(InputStream inputStream)
Read config objects stored in YAML format fromInputStream
static Map<String,? extends CacheConfig>
CacheConfig. fromYAML(Reader reader)
Read config objects stored in YAML format fromReader
static Map<String,? extends CacheConfig>
CacheConfig. fromYAML(String content)
Read config objects stored in YAML format fromString
static Map<String,? extends CacheConfig>
CacheConfig. fromYAML(URL url)
Read config objects stored in YAML format fromURL
Map<String,CacheConfig>
CacheConfigSupport. fromYAML(File file)
Map<String,CacheConfig>
CacheConfigSupport. fromYAML(InputStream inputStream)
Map<String,CacheConfig>
CacheConfigSupport. fromYAML(Reader reader)
Map<String,CacheConfig>
CacheConfigSupport. fromYAML(String content)
Map<String,CacheConfig>
CacheConfigSupport. fromYAML(URL url)
Methods in org.redisson.spring.cache with parameters of type CacheConfig Modifier and Type Method Description protected RMap<Object,Object>
RedissonSpringCacheManager. getMap(String name, CacheConfig config)
protected RMapCache<Object,Object>
RedissonSpringCacheManager. getMapCache(String name, CacheConfig config)
Method parameters in org.redisson.spring.cache with type arguments of type CacheConfig Modifier and Type Method Description void
RedissonSpringCacheManager. setConfig(Map<String,? extends CacheConfig> config)
Set cache config mapped by cache namestatic String
CacheConfig. toJSON(Map<String,? extends CacheConfig> config)
Convert current configuration to JSON formatString
CacheConfigSupport. toJSON(Map<String,? extends CacheConfig> configs)
static String
CacheConfig. toYAML(Map<String,? extends CacheConfig> config)
Convert current configuration to YAML formatString
CacheConfigSupport. toYAML(Map<String,? extends CacheConfig> configs)
Constructors in org.redisson.spring.cache with parameters of type CacheConfig Constructor Description RedissonCache(RMapCache<Object,Object> mapCache, CacheConfig config, boolean allowNullValues)
Constructor parameters in org.redisson.spring.cache with type arguments of type CacheConfig Constructor Description RedissonSpringCacheManager(RedissonClient redisson, Map<String,? extends CacheConfig> config)
Creates CacheManager supplied by Redisson instance and Cache config mapped by Cache nameRedissonSpringCacheManager(RedissonClient redisson, Map<String,? extends CacheConfig> config, Codec codec)
Creates CacheManager supplied by Redisson instance, Codec instance and Cache config mapped by Cache name.
-