Redis: Partitioning
Learn how to partition the data amongst different servers.
What is partitioning?
In the previous lesson, we discussed replication. With replication, we make multiple copies of the data, and each server contains the complete data. But if the data is too large and can’t be saved on a single instance? In that case, we may need to split the data and store it in different instances. This is ...