zoukankan      html  css  js  c++  java
  • Resource monitor 内存 commit private 涵义

    The Memory tab's Processes section displays key metrics related to how the system's processes use memory. Here's information about the metrics:

    • Image. Process executable file name. This is the name of the process that is actively using the disk.
    • PID. Process ID. This is the ID number associated with the process; it is useful if you want to use other utilities to manage processes, or if you want to easily match up processes with Task Manager.
    • Hard Faults/sec. A hard fault doesn't necessarily indicate a critical error condition, though it may indicate that the server is in need of more RAM. A hard fault occurs every time the system uses the swap file on the disk. This is important because disk storage is much, much slower than RAM, so each time the system uses disk-based virtual RAM, there is a significant performance penalty. If you see hard faults on a regular basis (especially if the numbers are large), you should consider adding more RAM to the server. Hard faults are sometimes referred to as Page Faults.
    • Commit (KB). This is the total amount of physical and virtual memory (page file) that is committed to this specific process.
    • Working Set (KB). This is the amount of physical memory that is committed to this particular process. This number should be the total of the next two metrics, which are its components.
    • Shareable (KB). This is the total amount of physical memory that is committed to this particular process but that can also be shared with another process.
    • Private (KB). This is the total amount of physical memory that is committed to this particular process but cannot be shared with another process.

    https://www.techrepublic.com/blog/the-enterprise-cloud/use-resource-monitor-for-memory-monitoring/

  • 相关阅读:
    [杂题]CSUOJ1274Balls and Boxes
    [Gauss]POJ1222 EXTENDED LIGHTS OUT
    [杂题]CSUOJ1413 Area of a Fractal
    [AC自动机]HDOJ3695 Computer Virus on Planet Pandora
    [dp]POJ2559 && HDOJ1506 Largest Rectangle in a Histogram
    [TSP+floyd]POJ3311 Hie with the Pie
    [状压dp]HDOJ3182 Hamburger Magi
    [状压dp]HDOJ1565 方格取数(1)
    [dp]Codeforces30C Shooting Gallery
    树套树模版
  • 原文地址:https://www.cnblogs.com/liujx2019/p/13524650.html
Copyright © 2011-2022 走看看