为什么powershell工作流程比平常功能慢,具有相同的功能?

时间:2017-08-24 02:53:43

标签: performance powershell workflow

workflow test1{
parallel{
      1
      2
      Get-Process
      4
      5
      }
}
function test2{
      1
      2
      Get-Process
      4
      5         
}

运行test1test2时,test1明显慢于test2measure-command也证明了这一点。

为什么会出现这种情况?在什么情况下应该使用workflow

我在Windows 7,PS 5.1上工作。

0 个答案:

没有答案