Spring Boot - Caching
Consider this Spring Boot Redis cache configuration snippet:
@Bean
public RedisCacheManager cacheManager(RedisConnectionFactory factory) {
return RedisCacheManager.builder(factory).build();
}
If the Redis server is down, what will happen when the application tries to cache data?