...

/

Introduction to Distributed Redis Architectures

Introduction to Distributed Redis Architectures

Learn how to run Redis across multiple servers for scalability and high availability.

We'll cover the following...

Redis architectures

Redis is a high performance database and a single Redis server can go a long way. But we can also run Redis across multiple servers if data requirements exceed the limitations of a single server. This also ensures high availability and redundancy.

This lesson will provide an introduction to the following Redis architectures:

  • Primary-replica

  • Redis sentinel

  • Proxy

  • Redis Cluster

Primary-replica

The ...