0

我们遇到了中断应用程序的软页面错误问题。

由于增加程序工作集的行为可能会导致软页面错误,有没有一种方法可以在启动时提前增加程序的工作集?

更新:

How to set MinWorkingSet and MaxWorkingSet in a 64-bit .NET process?有几个很好的答案?.

更新:

Is there a way to expand the current WorkingSet to 1GB? Is there a way to expand the current WorkingSet of a process to 1GB?

4

1 回答 1

3

您可以使用Process.CurrentProcess().MinWorkingSet设置工作集大小。

文档说这样做并不能保证内存将被保留或常驻。有关详细信息,请参阅http://msdn.microsoft.com/en-us/library/windows/desktop/ms686234(v=vs.85).aspx

于 2012-08-30T21:29:46.797 回答