• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    PowerShell实现动态获取当前脚本运行时消耗的内存

    想粗略地理解一个脚本消耗了多少内存,或着在你往PowerShell中的变量存结果时,消耗了多少内存,可以借助于下面的函数:

    #requires -Version 2
     
    $script:last_memory_usage_byte = 0
     
    function Get-MemoryUsage
    {
    $memusagebyte = [System.GC]::GetTotalMemory('forcefullcollection')
    $memusageMB = $memusagebyte / 1MB
    $diffbytes = $memusagebyte - $script:last_memory_usage_byte
    $difftext = ''
    $sign = ''
    if ( $script:last_memory_usage_byte -ne 0 )
    {
    if ( $diffbytes -ge 0 )
    {
    $sign = '+'
    }
    $difftext = ", $sign$diffbytes"
    }
    Write-Host -Object ('Memory usage: {0:n1} MB ({1:n0} Bytes{2})' -f $memusageMB,$memusagebyte, $difftext)
     
    # save last value in script global variable
    $script:last_memory_usage_byte = $memusagebyte
    }
    


    你可以在任何时候运行Get-MemoryUsage,它会返回当前脚本最后一次调用后消耗的内存,同时和你上一次调用Get-MemoryUsage运行结果的进行对比,并显示内存的增量。

    这里的关键点是使用了GC,它在.NET Framwwork中负责垃圾回收,通常不会立即释放内存,想要粗略地计算内存消耗,垃圾回收器需要被指定释放未被使用的内存[gc]::Collect(),然后再统计分配的内存。

    为了更好的演示上面的函数我们来看一个调用的例子:

    PS> Get-MemoryUsage
    Memory usage: 6.7 MB (6,990,328 Bytes)
    PS> $array = 1..100000
    PS> Get-MemoryUsage
    Memory usage: 10.2 MB (10,700,064 Bytes, +3709736)
    PS> Remove-Variable -Name array
    PS> Get-MemoryUsage
    Memory usage: 7.4 MB (7,792,424 Bytes, -2907640)


    上一篇:PowerShell Continue语句使用示例
    下一篇:PowerShell实现参数互斥示例
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    PowerShell实现动态获取当前脚本运行时消耗的内存 PowerShell,实现,动态,获取,