| So the GC has been changed to occur on a timely basis.
Hi willy,
You have mentioned "..The net result
> however is that the size of the GC can get really large ..". I didnt quite get the meaning of saying "size of GC". Did you mention about the heap. Also I would like to know, while a .net application is running, will the heap ever be full at any point of time due to garbage collection running in the background. can you point me to any good URl giving more detail about how and whys of heap management in .net context.
Thanks for your answers :)
pradeep_tp
> | Here is a link to Rico Mariani PDC Session which mentions about the
> | "Time-base criteria helps find idle cases"
[quoted text clipped - 12 lines]
>
> Willy.
Willy Denoyette [MVP] - 11 Jan 2006 21:39 GMT
Sorry, ...size of the GC heap can get ....
What I mean is that the Gen0 threshold is something like 256Kb - 500Kb, But
due to this enhancement, it's possible that Gen0 grows above this threshold
and that it reaches values like 2MB before the GC kicks in.
Note that the GC never runs in the background, it runs on a user thread
while all other managed threads in the application are suspended.
Check Maoni's Blogs at http://blogs.msdn.com/maoni/default.aspx for more
info about this subjects.
Willy.
| Hi willy,
|
| You have mentioned "..The net result
| > however is that the size of the GC can get really large ..". I didnt quite get the meaning of saying "size of GC". Did you mention about the
heap. Also I would like to know, while a .net application is running, will
the heap ever be full at any point of time due to garbage collection running
in the background. can you point me to any good URl giving more detail about
how and whys of heap management in .net context.
| Thanks for your answers :)
| pradeep_tp
|
| > | Here is a link to Rico Mariani PDC Session which mentions about the
| > | "Time-base criteria helps find idle cases"
http://microsoft.sitestream.com/PDC05/FUN/FUNL04_files/Botto_files/FUNL04_Mariani.ppt.
| > | So the GC has been changed to occur on a timely basis.
| >
[quoted text clipped - 7 lines]
| >
| > Willy.