Windows进程内存的监控问题

性能监视器中有几个参数都和内存相关:
\Process(w3wp)\Working Set - Private
\Process(w3wp)\Private Bytes
\Process(w3wp)\Virtual Bytes

以下是大致的区别以及解释链接:
Private Bytes are what your app has actually allocated, but include pagefile usage;
Private Bytes是应用实际分配的内存数量,既包括在物理内存中的,也包括pagefile中的;linked dll分配的内存是不包含在private Bytes的。

Working Set is the non-paged Private Bytes plus memory-mapped files;
Working Set是在物理内存中的Private Bytes加上memory-mapped files,是该进程所占用的物理内存大小;

Virtual Bytes are the Working Set plus paged Private Bytes and standby list.
Virtual Bytes是Working Set加上paged Private Bytes 和standby list,是进程所占用的所有虚拟地址空间大小;

http://www.cnblogs.com/whyandinside/archive/2010/07/06/1772488.html
http://www.cnblogs.com/dkongyying/archive/2012/07/02/2572846.html

你可能感兴趣的:(Windows)