September 2015
Beginner to intermediate
230 pages
4h 47m
English
This chapter will show alternative ways to scale Redis horizontally (using multiple instances rather than adding resources to a single instance) using concepts such as persistence, replication, and partitioning. Understanding these concepts is crucial to scale Redis beyond a single instance. By the end of this chapter, you should be able to work with multiple Redis instances and understand the trade-offs of each approach.
Since the beginning of this book, we have talked a lot about storing your data in memory using Redis. Memory is transient. Therefore, if a Redis instance is shut down, crashes, or needs to be rebooted, all of the stored data will be lost. To solve this problem, Redis ...
Read now
Unlock full access