The Virtual Memory Limit(KB) setting in IIS 7 on our production server has a value 0. Does it means our application is not using any virtual memory or does it means, there is no maximum limit on the amount of virtual memory that can be used?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

It means no limit.

It just wouldn't make any sense if your application couldn't use any memory at all :-)

link|improve this answer
Thanks Massimo, I am new to IIS management. My doubt is when Private Memory Limit(which I suppose is RAM) is also set to 0, the application would never use virtual memory unless entire RAM is filled up right? – kishore Aug 5 '10 at 20:19
2  
No, "virtual memory" doesn't mean "page file"; it means "total memory allocated to the process, regardless of whether it's actually stored in physical RAM or swapped out". – Massimo Aug 5 '10 at 20:23
feedback

Your Answer

 
or
required, but never shown

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