...

/

Redis: Replication

Redis: Replication

In this lesson, we will discuss how data is replicated in Redis.

What is data replication?

When data is stored on a server and there is a server crash, there is a chance that the data will be lost. To avoid this, the technique of data replication is used. The data is stored on two or more servers instead of a single server. That way, if a server goes down, data is not lost since it is available on the other server. Also, the application does not crash because the other ...