Introduction

Learn to set up the Redis server.

We'll cover the following...

We can run a single monolithic instance of a server application only if the number of clients accessing our application doesn’t exceed a couple of thousand. But what if we expect hundreds of thousands, or even millions of clients to connect to our application simultaneously? Then a single instance of an application won’t be able to handle the load, and we ...