Does garbage collection happen at the process level or appdomain level?

后端 未结 2 871
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-07 18:58

FullGC normaly pauses all Threads while running. Having two AppDomains, each running several threads. When GC runs, will all threads be paused, or only those of either one A

2条回答
  •  情话喂你
    2021-01-07 19:47

    From this thread here: Is the garbage collector in .net system-wide or application-wide?, it occurs on the process level. All threads in that process will be paused but not across multiple processes.

    One or multiple app domains can exist within a process but app domains are not shared between processes. Per: http://blogs.msdn.com/b/tess/archive/2008/08/19/questions-on-application-domains-application-pools-and-unhandled-exceptions.aspx, "all appdomains in the process share the same GC." Accordingly, GC should affect all app domains when a GC is triggered.

    However, a CPU performance hit can occur with too many processes spending time doing GC which can negatively affect the performance of other processes not involved in a GC.

    This link also explains the fundamentals of GC too:

    http://msdn.microsoft.com/en-us/library/ee787088.aspx

提交回复
热议问题