CacheTopic.cs
825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using System.Text;
using Quiz.Utility;
using Quiz.Utility.Cache;
using System.Data;
namespace Quiz.SiteBase.Cache
{
/// <summary>
/// 题目缓存
/// </summary>
public sealed class CacheTopic
{
CacheItem<List<Models.Topic>> _cacheitem;
public List<Models.Topic> CacheData { get { return _cacheitem.CacheData; } }
public CacheTopic()
{
_cacheitem = new CacheItem<List<Models.Topic>>(Init);
_cacheitem.InitCache();
}
public void Refresh()
{
_cacheitem.InitCache();
}
~CacheTopic()
{
_cacheitem.Dispose();
}
List<Models.Topic> Init()
{
return BLL.UserBll.GetTopics();
}
}
}