Spring Data Redis Lettuce Connection Issue
问题 I have spring boot application with MYSQL DB and i am caching the data in Redis in server layer with @Cacheable Annotation @Cacheable(value= "employeeCache", key= "#customerId") @Override public Customer getEmployee(String customerId) { Optional<Customer> cust = customerRepository.findById(Long.parseLong(customerId)); if(cust.isPresent()) { return cust.get(); } return null; } I am using 1 Master 2 Slave and 2 sentinel node, i have deployed the application in docker containers, in AWS ec2