asp.net 自动检测缓存内容是否变化

本文介绍了一个ASP.NET应用程序中使用缓存的具体实例。通过一个UserControl组件演示了如何利用System.Web.Caching.Cache和CacheDependency来缓存网页内容,减少文件读取频率并提高页面加载速度。
摘要由CSDN通过智能技术生成

1 使用cache.Insert方法时,新建一个System.Web.Caching.CacheDependency对象,告诉缓存,当缓存的内容发生变化时,将删除缓存,并重新缓存

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;

namespace Cachting
{
    public class CityListInfo
    {
        public string Timestamp { get; set; }
        public string Html { get; set; }
    }

    public partial class CitiesControl : System.Web.UI.UserControl
    {
        private static readonly string fileName = "/CitiesList.html";
        private static readonly string CACHE_KEY = "cities_html";
        private CityListInfo cityInfo;
        private bool cached = false;
        protected void Page_Load(object sender, EventArgs e)
        {
            cityInfo = Cache[CACHE_KEY] as CityListInfo;
            if (cityInfo==null)
            {
                cityInfo = new CityListInfo { Timestamp=DateTime.Now.ToLongTimeString(),
                    Html =File.ReadAllText(MapPath(fileName))};
                //只要未修改文件就应该缓存数据
                Cache.Insert(CACHE_KEY, cityInfo,new System.Web.Caching.CacheDependency(MapPath(fileName)));
            }
            else
            {
                cached = true;
            }
        }

        public string GetCities()
        {
            //return File.ReadAllText(MapPath(fileName));
            return cityInfo.Html;


        }

        public string GetTimeStamp()
        {
            // return DateTime.Now.ToLongTimeString();
            return cityInfo.Timestamp + (cached ? "<b>Cached</b>" : "");
        }
    }
}

 

转载于:https://www.cnblogs.com/mibing/p/7791777.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值