我刚刚发现System.Web.Caching.Cache
在我正在从事的一个项目中使用,我很难找到更多关于它的信息。
我的问题是这个缓存是如何持久化的?是客户端(类似于ViewState
),服务器端(Session
)?完全不同?
例子:
protected string FileContent
{
get
{
return Cache[FILE_UPLOAD_KEY + Id] as string ?? GetFileUpload();
}
}