in computers, what do “wired memory”, “compressed memory” and “Swap” mean? Why is it bad that a computer is using a lot of Swap?

697 views

in computers, what do “wired memory”, “compressed memory” and “Swap” mean? Why is it bad that a computer is using a lot of Swap?

In: Technology

2 Answers

Anonymous 0 Comments

> ELI5: in computers, what do “wired memory”

That’s an OSX specific term for memory which can’t be swapped out. So pretty much memory that’s taken no matter what, for various technical reasons.

> “compressed memory”

It’s kind of an intermediate kind of swap. Rather than writing out something rarely used to disk, it’s compressed and kept in RAM. This is faster than writing it to disk, because disks are slow, even SSDs.

> and “Swap” mean?

Stuff that used to be in RAM, and was now written to disk because it wasn’t needed much. This is things like those browser tabs you’ve opened 3 hours ago and not looked since.

> Why is it bad that a computer is using a lot of Swap?

Mostly because it’s a sign you don’t have enough RAM, and having to use the disk to compensate by moving out the rarely used bits. But disk is very slow compared to RAM, so using a large amount of swap risks everything grinding to a halt.

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