v7.3.2018.0614 重构高性能资源池,减少GC压力,增加线程池,让异步任务得到平等竞争CPU的机会
大石头
authored at
2018-06-14 17:56:44
X
@using System.Diagnostics;
@using System.Collections;
@using System.Reflection;
@using System.Runtime.Versioning;
@using NewLife.Common;
@{
Layout = NewLife.Cube.Setting.Current.Layout;
ViewBag.Title = "Session列表";
var Act = ViewBag.Act;
var asm = Assembly.GetExecutingAssembly();
var att = asm.GetCustomAttribute<TargetFrameworkAttribute>();
var ver = att.FrameworkDisplayName ?? att.FrameworkName;
}
<table class="table table-bordered table-hover table-striped table-condensed">
<tr>
<th colspan="6">
Session列表(@Session.Contents.Count )
</th>
</tr>
<tr>
<th>名称</th>
<th>类型</th>
<th>数值</th>
</tr>
@foreach (String item in Session.Keys)
{
<tr>
<td>@item</td>
<td>@Session[item].GetType().FullName</td>
<td>@Session[item]</td>
</tr>
}
</table>
|