Cache.Insert("cache_key", "cache_object", null, DateTime.Now.AddHours(1), Cache.NoSlidingExpiration, CacheItemPriority.NotRemovable, null);
System.AppDomain.CurrentDomain.Unload(System.AppDomain.CurrentDomain);
注意:这种方法仅适用于单一应用程序,为了提高应用程序的可伸缩性和健壮性,建议使用负载均衡技术和多个应用程序域。