gpt4 book ai didi

asp.net - 在 ASP.NET 中使用 System.Web.Caching.Cache 类的问题

转载 作者:行者123 更新时间:2023-12-04 10:22:29 25 4
gpt4 key购买 nike

所以我正在开发一个使用 ASP.NET 的项目。我试图调用 Cache["key"] 但编译器提示 System.Web.Caching.Cache 如何“在这一点上有效”。

如果我调用 Cache obj = new Cache(); obj 始终为空。

我可以访问 HttpContext.Current.Cache - 但这不允许我在 Insert() 方法中指定绝对过期和滑动过期。

有人能帮我吗?

最佳答案

您应该能够绝对或滑动过期调用 HttpRuntime.Cache 上的插入。它有几个重载。前任:

HttpRuntime.Cache.Insert("EXAMPLE_KEY", 
exampleItem,
Nothing,
DateTime.Now.AddHours(1),
System.Web.Caching.Cache.NoSlidingExpiration);

完全相同的代码也适用于 HttpContext.Current.Cache。

关于asp.net - 在 ASP.NET 中使用 System.Web.Caching.Cache 类的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/531014/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com