1
到期我有以下代碼:使緩存對象在午夜
var tempList = new BrandCollection();
if (HttpContext.Current.Cache["cachedDeviceList"] == null)
{
tempList = Provider.GetDeviceData(info);
HttpContext.Current.Cache.Insert(...);
}
else
{
tempList =
}
Cache.Insert()方法被重載哪裏可以設置的依賴關係,滑動和絕對過期。我想讓緩存在午夜過期。我怎麼做?預先感謝!