.NET使用HttpRuntime.Cache设置程序定时缓存

第一步:判断读取缓存数据

#region 缓存读取
if (HttpRuntime.Cache["App"] != null)
{
return HttpRuntime.Cache["App"];
}
#endregion

第二步:缓存失效时重新设置缓存

#region 设置缓存
if (HttpRuntime.Cache["App"] == null)
{
//缓存当前数据
HttpRuntime.Cache.Add("App", new { UserInfo, UserDefaultResumeInfo, InviteList = listdic }, null, DateTime.UtcNow.AddSeconds(), System.Web.Caching.Cache.NoSlidingExpiration, System.Web.Caching.CacheItemPriority.Default, null);//设置30秒有效缓存
}
#endregion
上一篇:[Unity] A* pathfinding project integrated with influence map


下一篇:PHP+MySQL 分页那点事