码迷,mamicode.com
首页 > Windows程序 > 详细

c# cache 缓存

时间:2016-04-08 10:11:19      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

 

System.Web.Caching简介

/// <summary>
/// 创建随机字符串
/// </summary>
/// <returns></returns>
public static string CreatenNonce_str()
{
var cache = HttpContext.Current.Cache;
var cacheCreatenNonceStr = cache.Get("cacheCreatenNonce_str");
if (cacheCreatenNonceStr==null)
{
Random r = new Random();
var sb = new StringBuilder();
var length = strs.Length;
for (int i = 0; i < 15; i++)
{
sb.Append(strs[r.Next(length - 1)]);
}
//如果缓存不存在,则添加——保存时间是7000秒
cache.Add("cacheCreatenNonce_str", sb, null, DateTime.Now.AddSeconds(7000), TimeSpan.Zero, CacheItemPriority.Normal, null);
return sb.ToString();
}
return cacheCreatenNonceStr.ToString();
}

c# cache 缓存

标签:

原文地址:http://www.cnblogs.com/zhtbk/p/5366802.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!