Using IIS 7 Application Private Memory

For IIS 7, the Help on Conversion Conditions for the Application Pool says that Private memory usage is ... a confidentially distributed system of physical memory ... (The property is named Maximum Used Memory in IIS 6.)

And recording the event log when reusing the application pool; "A workflow with process identifier" 4824 "serving the application pool (thepool)" requested processing because it reached its limit of limited bytes in bytes .

Thus, if its private bytes , then it should be a fixed memory, which is physical memory + page file . But, help speaks of its physical memory (in this case, the property should have the name of a private working set. )

ASP.NET Performance Monitoring and Admin Notification

Private bytes. The current size in bytes of committed memory belonging to this process. http://msdn.microsoft.com/en-us/library/ms972959.aspx#monitor_perf_topic12

I can not find corrections to this documentation, or am I missing something?

+4
source share

All Articles