Mac Wired vs Compressed Memory Explained
What Are the Different Types of Memory on Mac?
macOS divides physical RAM into five categories: wired memory (locked in RAM by the kernel, cannot be compressed or swapped), active memory (currently in use by running applications), compressed memory (inactive pages compressed in RAM to save space without writing to disk), cached/inactive memory (recently used data kept for quick access, reclaimable when needed), and free memory (unused, immediately available).
Understanding these categories is essential for interpreting what Activity Monitor or any system monitor is telling you. A Mac showing 14 GB of 16 GB "used" can be perfectly healthy if most of that usage is cached data that macOS will reclaim the moment an application needs it.
The kernel manages transitions between these categories automatically. As applications launch and quit, memory moves from free to active, from active to inactive, from inactive to compressed, and eventually to swap on disk if physical RAM is exhausted. Each transition has a performance cost, with swap being the most expensive by a wide margin.
What Is Wired Memory?
Wired memory is RAM that the macOS kernel has locked and cannot move, compress, or swap to disk. It includes the kernel itself, device drivers, critical system data structures, and I/O buffers. Wired memory is always resident in physical RAM.
Wired memory typically ranges from 1 to 4 GB on most Macs, depending on the hardware configuration and the number of active system services. Because the kernel controls what gets wired, you cannot directly reduce this allocation. It exists to guarantee that the most critical system components always have immediate access to physical memory without any risk of being paged out.
High wired memory usually indicates that many kernel extensions or system-level services are active. Virtualization software, network file systems, and security tools that install kernel extensions can all increase wired memory. On Apple Silicon Macs, the kernel extension model has largely been replaced by system extensions, but the kernel, drivers, and core data structures still consume wired memory.
Because wired memory cannot be reclaimed under any circumstances, it directly reduces the amount of RAM available for applications. On a Mac with 8 GB of total RAM and 2.5 GB wired, only 5.5 GB remains for active, compressed, cached, and free use.
What Is Compressed Memory?
When RAM fills up, macOS compresses inactive memory pages in place rather than writing them to disk. Compression is faster than swap because it keeps data in RAM, just in a smaller form. The CPU handles compression and decompression on the fly, trading processing time for memory space.
Compressed memory appears in Activity Monitor's Memory tab and represents pages that macOS has shrunk to free up physical RAM without resorting to disk-based swap. Apple introduced memory compression in OS X Mavericks (10.9), and it has been a core part of macOS memory management ever since.
High compressed memory is not necessarily a problem. It means macOS is efficiently managing limited RAM by keeping data accessible in a compact form. Decompressing a page from RAM is orders of magnitude faster than reading it back from an SSD. Compression only becomes concerning when the system cannot keep up and begins writing swap files to disk, which causes noticeable performance degradation.
The compression ratio varies depending on the data. Text and simple data structures compress well, sometimes achieving 2:1 or better ratios. Image data and already-compressed content compress poorly. macOS evaluates each page individually and only compresses it if the result is worthwhile.
What Is the Difference Between Cached and Free Memory?
Cached (inactive) memory holds recently used data that applications may need again soon. macOS keeps it in RAM for fast access. Free memory is completely unused RAM. macOS intentionally keeps free memory low because unused RAM is wasted RAM.
It is better to cache useful data than leave memory empty. When an application needs RAM, macOS instantly reclaims cached memory without any performance penalty. The data in cached pages is simply discarded or written back to disk if it was modified, and the freed pages are handed to the requesting application.
This design means that "low free memory" is normal and not a sign of a problem. A healthy Mac will typically show very little free memory because the operating system proactively fills available space with file caches, recently used application data, and speculative read-ahead buffers. All of this cached data accelerates future access patterns while remaining fully reclaimable on demand.
The metric that actually matters is memory pressure, not free memory. Green pressure with zero free memory means the system is running optimally. Yellow or red pressure with substantial free memory would indicate a problem, though that scenario is extremely rare.
How Does MoniThor Display Memory Categories?
MoniThor shows a complete memory breakdown including wired, compressed, active, cached, and free categories. Each value is displayed in real time so you can see exactly where your RAM is going at any moment.
The memory section displays wired, compressed, cached, and free values alongside total used memory, the memory pressure ring gauge (green, yellow, red), swap usage, and page-in/page-out rates per second. Used memory is calculated as wired plus active plus compressed, matching Activity Monitor's calculation.
Having all five categories visible at once makes it easy to understand where your RAM is going. If wired memory is unusually high, you know the kernel or a system extension is consuming extra resources. If compressed memory is large but pressure remains green, you know macOS is handling things efficiently. If swap usage is climbing alongside red pressure, you know it is time to close some applications.
When Should You Worry About Memory Usage?
The key metric is memory pressure, not any single category. Green memory pressure means macOS is managing memory well regardless of how the categories look. Yellow means the system is actively compressing and you should consider closing some apps. Red signals heavy swap activity with significant slowdown.
Green pressure. Everything is fine. Even if wired memory is 3 GB and compressed memory is 4 GB, green pressure indicates that macOS has the situation under control. No action is needed.
Yellow pressure. The system is working harder to manage memory. Compression is running frequently and macOS may begin writing small amounts of swap. Consider closing applications you are not actively using, especially browser tabs and background processes that consume significant RAM.
Red pressure. The system is heavily swapping to disk. You will likely notice sluggish application switching, delayed input responses, and the spinning wheel cursor appearing frequently. Close applications immediately or restart the Mac. If red pressure occurs regularly under your normal workload, your Mac may not have enough RAM for your needs.
High wired memory is normal and not something you can control. High compressed memory is fine as long as pressure stays green. The combination that signals a real problem is high compressed memory, growing swap usage, and yellow or red pressure. That pattern means macOS has exhausted its ability to manage memory efficiently within the available physical RAM.
Marcel Iseli is a software developer and the creator of MoniThor. He builds native macOS utilities focused on performance monitoring and system optimization, with a focus on lightweight, subscription-free tools.