手机
当前位置:查字典教程网 >脚本专栏 >PowerShell >PowerShell实现动态获取当前脚本运行时消耗的内存
PowerShell实现动态获取当前脚本运行时消耗的内存
摘要:想粗略地理解一个脚本消耗了多少内存,或着在你往PowerShell中的变量存结果时,消耗了多少内存,可以借助于下面的函数:#requires...

想粗略地理解一个脚本消耗了多少内存,或着在你往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实现动态获取当前脚本运行时消耗的内存】相关文章:

PowerShell实现查询打开某个文件的默认应用程序

Powershell实现从注册表获取本地关联文件的扩展名

PowerShell实现时间管理小秘书

PowerShell在控制台输出特殊符号的方法

PowerShell获取字符串长度的方法

Powershell小技巧之获取注册表值的类型

PowerShell入门教程之编写和使用脚本模块实例

PowerShell获取当前进程PID的小技巧

PowerShell包含另一个脚本文件和获取当前脚本所在目录的方法例子

PowerShell中获取Windows系统序列号的脚本分享

精品推荐
分类导航