HttpContext.Current.Cache.Insert("FCacheMs", tb, New CacheDependency(HttpContext.Current.Server.MapPath("~/CacheMs.txt")))
当CacheMs.txt文件发生变化后,过一秒后程序马上请求这个Cache,发现它不会更新,估计系统修改文件属性要一定的时间。
HttpContext.Current.Cache.Insert("FCacheMs", tb, New CacheDependency(HttpContext.Current.Server.MapPath("~/CacheMs.txt")))
当CacheMs.txt文件发生变化后,过一秒后程序马上请求这个Cache,发现它不会更新,估计系统修改文件属性要一定的时间。
转载于:https://www.cnblogs.com/LCX/p/4245347.html