HttpContext.Current.Cache 只可能用于 Web 应用的缓存
适应的地方:
public static void UserHashByMap(int uId)
{
HttpContext.Current.Cache["xx"] != null
}
HttpRuntime.Cache 可用于非 Web 应用的缓存,不然用 HttpContext.Current.Cache ,是无法获得web下存储的Cache
适应的地方:
public static void RefreshCacheByTimer(object sender, ElapsedEventArgs e)
{
HttpRuntime.Cache["xx"] != null
}