FullGC正常运行时暂停所有线程。有两个AppDomain,每个都运行多个线程。 GC运行时,是否会暂停所有线程,或者仅暂停其中一个AppDomain?
答案 0 :(得分:16)
很难回答,最好的办法就是测试它:
using System;
using System.Reflection;
public class Program : MarshalByRefObject {
static void Main(string[] args) {
var dummy1 = new object();
var dom = AppDomain.CreateDomain("test");
var obj = (Program)dom.CreateInstanceAndUnwrap(Assembly.GetExecutingAssembly().FullName, typeof(Program).FullName);
obj.Test();
Console.WriteLine("Primary appdomain, collection count = {0}, gen = {1}",
GC.CollectionCount(0), GC.GetGeneration(dummy1));
Console.ReadKey();
}
public void Test() {
var dummy2 = new object();
for (int test = 0; test < 3; ++test) {
GC.Collect();
GC.WaitForPendingFinalizers();
}
Console.WriteLine("In appdomain '{0}', collection count = {1}, gen = {2}",
AppDomain.CurrentDomain.FriendlyName, GC.CollectionCount(0),
GC.GetGeneration(dummy2));
}
}
输出:
In appdomain 'test', collection count = 3, gen = 2
Primary appdomain, collection count = 3, gen = 2
有充分证据表明GC会影响默认CLR主机上的所有AppDomain。这让我感到惊讶。
答案 1 :(得分:13)
从这个线程:Is the garbage collector in .net system-wide or application-wide?,它发生在进程级别。该进程中的所有线程都将暂停,但不会跨多个进程。
流程中可以存在一个或多个应用域,但应用域之间不会共享应用域。 Per:http://blogs.msdn.com/b/tess/archive/2008/08/19/questions-on-application-domains-application-pools-and-unhandled-exceptions.aspx,“流程中的所有appdomains共享同一个GC。”因此,GC会在触发GC时影响所有应用域。
但是,由于过多的进程花费在GC上的时间,可能会导致CPU性能下降,这可能会对GC中未涉及的其他进程的性能产生负面影响。
此链接也解释了GC的基本原理: