Jared
Sysnative Staff, BSOD Kernel Dump Expert
- Feb 3, 2014
- 1,591
Windows 10 has actually implemented a new memory management system.
Don't forget, unused memory is wasted memory.
The way the new memory management system actually works is applications will be moved and compressed to the system process working set (now used by system and compressed memory).
Instead of idle pages (which haven't been accessed in a long time) being written to disk, they are kept in memory through this compression. So when you do need that memory which has been trimmed, it is still a quick soft fault back into the working set.
It was simply impractical for pages to be written to disk and placed on a standby list, only to be read straight back in when you have a lot of memory left available.
What you're seeing is slightly different, but it still isn't a memory leak. Leaks happen when applications don't fail to release memory, thus keeping that memory from being reallocated. To me, it simply looks like some of your windows services are performing a lot of tasks.
But with the size of your RAM, you have little need to worry.
Don't forget, unused memory is wasted memory.
The way the new memory management system actually works is applications will be moved and compressed to the system process working set (now used by system and compressed memory).
Instead of idle pages (which haven't been accessed in a long time) being written to disk, they are kept in memory through this compression. So when you do need that memory which has been trimmed, it is still a quick soft fault back into the working set.
It was simply impractical for pages to be written to disk and placed on a standby list, only to be read straight back in when you have a lot of memory left available.
What you're seeing is slightly different, but it still isn't a memory leak. Leaks happen when applications don't fail to release memory, thus keeping that memory from being reallocated. To me, it simply looks like some of your windows services are performing a lot of tasks.
But with the size of your RAM, you have little need to worry.