I have a Spring Cloud based application with multiple backend Spring-Boot servers. The servers are all sharing their session with a single Redis server via @EnableRedisHttpSession.
I now have a requirement for failover support of Redis in production, which means I will have to setup a master-slave configuration (I guess...).
How will I configure Http Session replication via Redis to be aware of the two servers? I could not find any documentation on this. Note that I am not using Spring Data Redis here, just the Spring Session support for Redis.