this post was submitted on 19 Aug 2025
701 points (97.9% liked)

Technology

74247 readers
4203 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 news or articles.
  3. Be excellent to each other!
  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, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] The_Decryptor@aussie.zone 4 points 1 day ago* (last edited 1 day ago) (1 children)

Browsers partition the cache by "origin" now though, so while it can cache HTTPS content, it can't effectively cache shared content (It'll store multiple independent copies).

So Youtube still works fine, but Google Fonts is pointless now.

Edit: Oh yeah, and any form of shared JavaScript/CSS/etc. CDN is now also useless and should be avoided, but that's always been the case.

[–] Cocodapuf@lemmy.world 3 points 1 day ago (1 children)

Yeah, this is the point I was getting at, encrypted content tends to be personalized to individual users, not always I guess. But yeah, I'm not sure how much is left.

[–] The_Decryptor@aussie.zone 3 points 1 day ago

It was an issue for a long time that browsers just ignored the caching headers on content delivered over HTTPS, a baked in assumption that they must be private individual content. That's not the case now, so sites have to specifically mark those pages as uncachable (I think Steam got hit by something like this not that long ago, a proxy was serving up other peoples user pages it had cached).

But for something like Google Fonts, the whole point of it was that a site could embed a large font family, and then every other visited site that also used it would simply share the first cached copy. Saving the bandwidth and amortizing the initial cost over the shared domains. Except now that no longer holds, instead of dividing the resources by the amount of sites using it, it's multiplying it. So while a CDN might put the contents physical closer to the users, it doesn't actually save any bandwidth (and depending on how it's configured, it can actually slow page loads down)