摘要: 这几天在项目中经常用到缓存,干脆就对这个缓存做了一个简单的封装 ,今后直接那俩用就行了; public class SiteCache { #region 方法 private static readonly Cache _cache; public static readonly int HourFactor; public static readonly int MinuteFactor; static SiteCache() { HourFactor = 1;//小时 MinuteFactor = 1;//分钟 _cache = HttpRuntime.Cache; } /// < 阅读全文
posted @ 2012-11-10 09:11 plugin-loader 阅读(189) 评论(1) 推荐(1) 编辑