How twitch deals with storing so much data in realtime chats, lives…, it looks like there i huge read and write for every second

217 views

How twitch deals with storing so much data in realtime chats, lives…, it looks like there i huge read and write for every second

In: 1

Anonymous 0 Comments

There is a lot of reads and writes which is not possible for single server to handle, but combination of distributed servers across the world (more than 500, but couldn’t find exact number) will do the job.
So every server will take a load from closest clients.
Then you have a caching, which stores frequently accessed or lately accessed data for fast deliver. Imagine that being stored in RAM instead of the Hard drive.

You are viewing 1 out of 1 answers, click here to view all answers.