zoukankan      html  css  js  c++  java
  • Chrome 内存和CPU消耗量双料冠军

    今天统计了下某个时刻各进程的内存和CPU使用概况.结果发现,Chrome消耗量真是不一般的大.比Windows主进程都还猛!

    另外发现百度安全卫士占用CPU也比较猛.

    powershell下输入: 

    ps | Out-File C:UsersNanDesktop est.txt

    然后分析输出数据即可.

    If you type

    get-help get-process -full  
    

    You will get an explanation of these terms. Here it is:

    The default display of a process is a table that includes the following columns:

    -- Handles: The number of handles that the process has opened.

    -- NPM(K): The amount of non-paged memory that the process is using, in kilobytes.

    -- PM(K): The amount of pageable memory that the process is using, in kilobytes.

    -- WS(K): The size of the working set of the process, in kilobytes. The working set consists of the pages of me mory that were recently referenced by the process.

    -- VM(M): The amount of virtual memory that the process is using, in megabytes. Virtual memory includes storage in the paging files on disk.

    -- CPU(s): The amount of processor time that the process has used on all processors, in seconds.

    -- ID: The process ID (PID) of the process.

    -- ProcessName: The name of the process.

  • 相关阅读:
    bzoj1036 [ZJOI2008]树的统计Count(树链剖分)
    poj2348 Euclid's Game
    bzoj3575 [Hnoi2014]道路堵塞
    poj2484 A Funny Game
    bzoj2286 [Sdoi2011]消耗战
    虚树学习笔记
    bzoj4518 [Sdoi2016]征途
    node.js开发环境配置
    js中阻止事件冒泡和浏览器默认行为
    css3 background-clip和background-origin 区别
  • 原文地址:https://www.cnblogs.com/xiangnan/p/3491568.html
Copyright © 2011-2022 走看看