Introduction
Cluster architecture helps Redis store and manage data across many servers. This makes Redis faster and able to handle more data.
When your data is too big to fit on one Redis server.
When you want Redis to keep working even if one server stops.
When you want to spread the work of handling many users across servers.
When you want Redis to automatically balance data between servers.
When you want to add more servers easily as your data grows.