gpt4 book ai didi

testing - 如何使用 powershell 最大化内存使用

转载 作者:行者123 更新时间:2023-11-28 19:46:54 26 4
gpt4 key购买 nike

我正在尝试做一些需要资源承受压力的测试。我能够找出如何使用 PowerShell 最大化 CPU 使用率。

start-job -ScriptBlock{
$result = 1;
foreach ($number in 1..2147483647)
{
$result = $result * $number
}
}

有没有一种方法可以使用 PowerShell 来实现同样的最大化内存使用率?

最佳答案

试试这个:

$mem_stress = "a" * 200MB

编辑:如果不能在单个 block 中分配所有内存,请尝试在一个数组中分配多个 block :

$mem_stress = @()
for ($i = 0; $i -lt ###; $i++) { $mem_stress += ("a" * 200MB) }

GC 似乎不会干扰这一点(在分配了 1 GB RAM 的 VM 中进行快速测试的结果):

PS C:\> $a = @()
PS C:\> $a += ("a" * 200MB)
PS C:\> $a += ("a" * 200MB)
PS C:\> $a += ("a" * 200MB)
PS C:\> $a += ("a" * 200MB)
The '*' operator failed: Exception of type 'System.OutOfMemoryException' was thrown..
At line:1 char:13
+ $a += ("a" * <<<< 200MB)
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : OperatorFailed

关于testing - 如何使用 powershell 最大化内存使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12631021/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com