this post was submitted on 02 Jul 2023
13 points (100.0% liked)
ELI5
569 readers
2 users here now
Explain it to me like I am 5. Everybody should know what this is about.
founded 2 years ago
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Many apps work on a "client-server" model, where you (via a website or an app, the client) ask for things from some other machine on the internet - the server. These things the client asks for could be to get some information about something, or to make some sorta change to something
In general, these "things" the client asks for are called "requests", and Server Load is a sorta measure of how much effort the server needs to spend to handle these requests
Different requests could have different levels of effort, and even different types of effort (ex. A file upload would depend on how fast the storage is. Complex calculations like trying to find the fastest route on a map would depend on how fast the processor is). In general though, the more requests per second that you have to deal with, the more load it puts on the server