I have two redis instances on two different servers. I want to implement replication/mirroring with both writable instances.
In case of failover one of them, other instance keep all data and be writable.
Also, the client could connect both servers to access any data.
I tried Redis cluster tutorial and I implemented clustering in redis with 3 masters and 3 slaves but because of my server resource limits, I am trying to do this using two redis instances.