[Mono-bugs] [Bug 508891] New: AppDomain creating/unload is terribly slow
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Mon Jun 1 19:07:50 EDT 2009
http://bugzilla.novell.com/show_bug.cgi?id=508891
Summary: AppDomain creating/unload is terribly slow
Classification: Mono
Product: Mono: Runtime
Version: unspecified
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: JIT
AssignedTo: lupus at novell.com
ReportedBy: msafar at novell.com
QAContact: mono-bugs at lists.ximian.com
Found By: ---
AppDomain creating/unloading is terribly slow
using System;
class Test
{
public static void Main() {
DateTime s = DateTime.Now;
for (int i = 0; i < 1000; ++i) {
AppDomain otherDomain = AppDomain.CreateDomain("domain" + i);
AppDomain.Unload (otherDomain);
}
Console.WriteLine (DateTime.Now - s);
}
}
NET : 00:00:02.5636864
Mono HEAD: 00:02:41.8332290
Yep, that's 100 times slower.
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the mono-bugs
mailing list