c# - Does the GC know about the IIS app pool memory limit? -
i have .net c# website in iis.
if assigned app pool doesn't have memory limit, app memory usage seems grow until there maybe 1gb of ram left, there seemingly garbage collection event , memory usage goes down dramatically. rinse , repeat.
however, if set private memory limit (kb)
in app pool specific (pretty low, double of app uses initially) value, app grow in memory usage , app pool recycle.
- is garbage collector aware of iis app pool limit?
- if not, there way notify garbage collector there one?
Comments
Post a Comment