this post was submitted on 07 May 2025
520 points (97.4% liked)

Memes

9924 readers
1307 users here now

Post memes here.

A meme is an idea, behavior, or style that spreads by means of imitation from person to person within a culture and often carries symbolic meaning representing a particular phenomenon or theme.

An Internet meme or meme, is a cultural item that is spread via the Internet, often through social media platforms. The name is by the concept of memes proposed by Richard Dawkins in 1972. Internet memes can take various forms, such as images, videos, GIFs, and various other viral sensations.


Laittakaa meemejä tänne.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] dan@upvote.au 12 points 3 days ago (2 children)

Unused RAM is wasted RAM. Apps like Chrome use available RAM if it's available, but they should be releasing it for other apps to use when there's high memory pressure.

It's the same with disk caching. If you have a lot of free RAM, the OS will use all of it for caching files.

[–] Quill7513@slrpnk.net 20 points 3 days ago (1 children)

my problem with certain programs, chrome included, is they tell the os "no, you can't have this ram back. i'm using it"

i understand the logic of your argument, but it's never played out in life

[–] dan@upvote.au 6 points 3 days ago* (last edited 3 days ago) (1 children)

In some cases, the RAM actually is in use by the site. That's especially the case on sites with heavy client-side logic. In that case, it's not Chrome's (or Firefox's) fault, it's the website's fault. If you hover over the tab, it should show memory usage in the popover.

Chrome has a "Memory Saver" feature where it'll unload tabs that are offscreen/hidden which helps quite a bit. Not sure if Firefox has something similar.

[–] TheFriendlyDickhead@lemm.ee 3 points 3 days ago

Not sure if it's included in base firefox, but I use a extension that does exactly that

[–] MonkderVierte@lemmy.ml 3 points 2 days ago* (last edited 2 days ago) (1 children)

No, the reason why browsers use so much RAM is because every tab is it's own process and sandbox. That and lazy handling of content.

Edit: apparently i overestimated the overhead of process & sanbox per tab? So it's more lazy handling, i.e. keeping pictures in RAM instead of pushing them to cache?

[–] dan@upvote.au 2 points 2 days ago

Sandboxing does use some RAM, but it was a big win for security. One site can't crash the entire browser or use a security hole to get access to data on other tabs. Still, the majority of the RAM is taken by the site itself. The processes do share some RAM - they're not entirely isolated.