web.config caching differences
- by Ivanhoe123
What are the differences between these two approaches of caching (set up through web.config file)?
<caching>
<profiles>
<add extension=".php" policy="DisableCache" kernelCachePolicy="DisableCache" />
<add extension=".html" policy="CacheForTimePeriod" kernelCachePolicy="CacheForTimePeriod" duration="7:00:00" />
…