Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
关于在 ASP.NET 中使用 System.Web.HttpContext.Current.Cache 的快速问题。并发安全吗?我的意思是,如果我这样做:
Cache.Insert("user", user, Nothing, DateTime.Now.AddSeconds(60), TimeSpan.Zero)
那么名为“用户”的缓存对于应用程序的每个用户都是唯一的?
ASP.NET 缓存由用户共享。您应该使用会话来存储用户特定的项目。