网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

ASP.NET性能优化之构建自定义文件缓存

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/01/07

ASP.NET的输出缓存(即静态HTML)在.NET4.0前一直是基于内存的。这意味着如果我们的站点含有大量的缓存,则很容易消耗掉本机内存。现在,借助于.NET4.0中的OutputCacheProvider,我们可以有多种选择创建自己的缓存。如,我们可以把HTML输出缓存存储到memcached分布式集群服务器,或者MongoDB中(一种常用的面向文档数据库,不妨阅读本篇http://msdn.microsoft.com/zh-cn/magazine/gg650661.aspx)。当然,我们也可以把缓存作为文件存储到硬盘上,考虑到可扩展性,这是一种最廉价的做法,本文就是介绍如果构建自定义文件缓存。

1:OutputCacheProvider

OutputCacheProvider是一个抽象基类,我们需要override其中的四个方法,它们分别是:

Add 方法,将指定项插入输出缓存中。

Get 方法,返回对输出缓存中指定项的引用。

Remove 方法,从输出缓存中移除指定项。

Set 方法,将指定项插入输出缓存中,如果该项已缓存,则覆盖该项。

2:创建自己的文件缓存处理类

该类型为FileCacheProvider,代码如下:

  1. public class FileCacheProvider : OutputCacheProvider  
  2. {  
  3. private static readonly ILog log = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);  
  4.  public override void Initialize(string name, NameValueCollection attributes)  
  5. {  
  6. base.Initialize(name, attributes);  
  7. CachePath = HttpContext.Current.Server.MapPath(attributes["cachePath"]);  
  8. }  
  9. public override object Add(string key, object entry, DateTime utcExpiry)  
  10. {  
  11. Object obj = Get(key);  
  12. if (obj != null//这一步很重要  
  13. {  
  14. return obj;  
  15. }  
  16. Set(key,entry,utcExpiry);  
  17. return entry;  
  18. }  
  19. public override object Get(string key)  
  20. {  
  21. string path = ConvertKeyToPath(key);  
  22. if (!File.Exists(path))  
  23. {  
  24. return null;  
  25. }  
  26. CacheItem item = null;  
  27. using (FileStream file = File.OpenRead(path))  
  28. {  
  29. var formatter = new BinaryFormatter();  
  30. item = (CacheItem)formatter.Deserialize(file);  
  31. }  
  32. if (item.ExpiryDate <= DateTime.Now.ToUniversalTime())  
  33. {  
  34. log.Info(item.ExpiryDate + "*" + key);  
  35. Remove(key);  
  36. return null;  
  37. }  
  38. return item.Item;  
  39. }  
  40. public override void Set(string key, object entry, DateTime utcExpiry)  
  41. {  
  42. CacheItem item = new CacheItem(entry, utcExpiry);  
  43. string path = ConvertKeyToPath(key);  
  44. using (FileStream file = File.OpenWrite(path))  
  45. {  
  46. BinaryFormatter formatter = new BinaryFormatter();  
  47. formatter.Serialize(file, item);  
  48. }  
  49. }  
  50. public override void Remove(string key)  
  51. {  
  52. string path = ConvertKeyToPath(key);  
  53. if (File.Exists(path))  
  54. File.Delete(path);  
  55.  }  
  56. public string CachePath  
  57. {  
  58. get;  
  59. set;  
  60. }  
  61. private string ConvertKeyToPath(string key)  
  62. {  
  63. string file = key.Replace(''/''''-'');  
  64. file += ".txt";  
  65. return Path.Combine(CachePath, file);  
  66. }  
  67. }  
  68. [Serializable]  
  69. public class CacheItem  
  70. {  
  71. public DateTime ExpiryDate;  
  72. public object Item;  
  73. public CacheItem(object entry, DateTime utcExpiry)  
  74. {  
  75. Item = entry;  
  76. ExpiryDate = utcExpiry;  
  77. }  

  • 下一篇资讯: 浅谈ASP.NET核心对象
  • 网学推荐

    免费论文

    原创论文

    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号