Redis – Enable single server and cluster mode both for ElastiCache
I am trying to conifgure redisson.yaml something like below redis: mode: ${REDIS_MODE:single} # Default to single mode if REDIS_MODE is not set # Configuration for single Redis server singleServerConfig: enabled: ${REDIS_MODE:single} == 'single' address: ${REDIS_URL:-redis://localhost:6379} username: ${REDIS_USERNAME:-null} password: ${REDIS_PASSWORD:-null} database:…