I have a C++ server application running on Windows Server 2003 64 bit. Machine has 16 cores and 16 GB of ram. Once the app gets to about 2GB memory usage its Page Fault delta shoots up to ~200,000 and the app becomes very slow. The app is compiled with a 64bit compiler. Any ideas?

link|improve this question
feedback

migrated from stackoverflow.com Feb 18 '11 at 21:07

This question came from our site for professional and enthusiast programmers.

1 Answer

Does GetProcessWorkingSetSizeEx indicate a maximum working set of 2GB? If so, raise it with SetProcessWorkingSizeEx.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.