只想仔细检查一下。我有以下代码:
if (HttpContext.Current.Cache["DataTable"] == null)
{
Cache.Insert("DataTable", DtMaster, null, DateTime.Now.AddMinutes(2),
System.Web.Caching.Cache.NoSlidingExpiration);
}
假设用户A登录并创建一个包含3行的数据表,如果用户B然后登录到完全机器,他们是否也会看到3行?
我想我是否要求所有用户都可以使用存储在缓存中的项目?
感谢。