Vishnu
Vishnu

Reputation: 91

Redis multi client server architecture

I am having a application which is using redis. Its a two box system means the application is in HA(High availability architecture). When a box go down i want to recover the all the data on that box to sync with first box and vice versa. Is is possible with redis ???

Upvotes: 1

Views: 936

Answers (1)

Tommaso Barbugli
Tommaso Barbugli

Reputation: 12031

You can configure redis to persist all data to disk and configure your machines in master slave replication.

Redis sentinel (built in redis 2.7+) can be also used to do automatic failure recovery (promote one slave as master when master is down)

You can find all the documentation you need about this on the redis docs website http://redis.io/documentation

Upvotes: 1

Related Questions