gpt4 book ai didi

c# - 在 C#(ASP.NET) 中缓存

转载 作者:行者123 更新时间:2023-11-30 22:28:26 24 4
gpt4 key购买 nike

我正在尝试在我的程序中实现缓存。我有一个 Web 应用程序,可以让用户访问一些学习类(class)。当用户登录时,我会从我们的数据库中对他进行身份验证。现在,如果从列表中访问不同的类(class),我不想返回到数据库。相反,我想将值存储在缓存中,比如 20 分钟。该程序应该1) 对用户进行认证,让他访问类(class)。如果他改变了类(class),程序应该在缓存中查找。如果用户 ID 存在,则让他访问类(class)而无需返回服务器。2) 提供一种机制,如果 20 分钟后用户仍在系统上,则自动更新 time.so,用户不会注销。我试过这样的事情

Cache ch = new Cache();
ch.Add("key","value);

但是我在第二个语句中得到了空引用异常。我以前从未使用过缓存,因此非常感谢任何指示。

最佳答案

我是这样用的:

/// <summary>
/// Get Data
/// </summary>
/// <returns>data</returns>
public static ElementOut GetData()
{
//function return value
ElementOut functionReturnValue = new ElementOut();

try
{
string key = "data";
if (HttpRuntime.Cache[key] == null)
{
//fetch data
var data = CreateBLLAdapter().GetData();

//validate data
if (data == null) throw new Exception("data is empty!");

//set cache to 12 hours
DateTime timeToExpire = DateTime.Now.AddHours(12);

//set cache
HttpRuntime.Cache.Insert(key, data, null, timeToExpire, Cache.NoSlidingExpiration);
}

//set return from cache
functionReturnValue = (ElementOut)HttpRuntime.Cache[key];

}
catch (Exception ex)
{
//Log.WriteServerErrorLog(ex);
}

return functionReturnValue;
}

关于c# - 在 C#(ASP.NET) 中缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10827871/

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