Configuration Redis Sentinel in Micronaut
I currently have a running application with Redis and I would like to add Redis Sentinel configuration to ensure high availability for my database. Could someone help me with configuring Redis Sentinel in Micronaut? Application.yml file: redis: uri: redis-sentinel://localhost:26379,localhost:26380,localhost:26381/0#redismaster My…