this post was submitted on 07 Oct 2024
564 points (98.8% liked)

Technology

58701 readers
3994 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Olgratin_Magmatoe@lemmy.world 5 points 1 week ago (2 children)

GET requests can still overload a system.

[–] tempest@lemmy.ca 2 points 1 week ago

The type of request is not relevant. It's the cost of the request that's an issue. We have long ago stopped serving html documents that are static and can be cached. Tons of requests can trigger complex searches or computations which are expensive server side. This type of behavior basically ruins the internet and pushes everything into closed gardens and behind logins.

[–] jagged_circle@feddit.nl -3 points 1 week ago (1 children)

Sounds like you need to fire your sysadmin

[–] Olgratin_Magmatoe@lemmy.world 3 points 1 week ago (1 children)

It has nothing to do with a sysadmin. It's impossible for a given request to require zero processing power. Therefore there will always be an upper limit to how many get requests can be handled, even if it's a small amount of processing power per request.

For a business it's probably not a big deal, but if it's a self hosted site it quickly can become a problem.

[–] jagged_circle@feddit.nl 0 points 1 week ago (1 children)

Caches can be configured locally to use near-zero processing power. Or moved to the last mile to use zero processing power (by your hardware)

[–] Olgratin_Magmatoe@lemmy.world 3 points 1 week ago* (last edited 1 week ago) (1 children)

Near zero isn't zero though. And not everyone is using caching.

[–] jagged_circle@feddit.nl 0 points 1 week ago (1 children)

Right, thats why I said you should fire your sysadmin if they aren't caching or can't manage to get the cache down to zero load for static content served to simple GET requests

[–] Olgratin_Magmatoe@lemmy.world 1 points 1 week ago

Not every GET request is simple enough to cache, and not everyone is running something big enough to need a sysadmin.