workflow test1{
parallel{
1
2
Get-Process
4
5
}
}
function test2{
1
2
Get-Process
4
5
}
运行test1
和test2
时,test1
明显慢于test2
。measure-command
也证明了这一点。
为什么会出现这种情况?在什么情况下应该使用workflow
?
我在Windows 7,PS 5.1上工作。