文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>CLR via C# 读书笔记 6-3 跨域访问的性能问题

CLR via C# 读书笔记 6-3 跨域访问的性能问题

时间:2011-01-06  来源:听说读写

大约不跨域比跨域快100多倍....

 

代码
 AppDomain newDomain = AppDomain.CreateDomain("remote application domain", null, null);
MarshalByRefType local
= new MarshalByRefType();
MarshalByRefType remote
= (MarshalByRefType)newDomain.CreateInstanceAndUnwrap(Assembly.GetEntryAssembly().FullName, "TestConsole.MarshalByRefType");
Stopwatch sw
= null;
int length = 10000000;
int temp;

sw
= Stopwatch.StartNew();
for (int i = 0; i < length; i++)
{
//local.SetValue(i);
temp=local.GetValue();
}
Console.WriteLine(sw.ElapsedMilliseconds);

sw
= Stopwatch.StartNew();
for (int i = 0; i < length; i++)
{
//remote.SetValue(i);
temp = remote.GetValue();
}
Console.WriteLine(sw.ElapsedMilliseconds);
return;

  

test result in my machine:

101

17532

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载