This post has been migrated from www.experimentsincode.com, we apologise if some of the images or content is missing
<!-- CACHING ENABLED
Determines if caching should be enabled at all
Specify 'true' to enable caching and 'false' to disable all caching
-->
<setting name="Caching.Enabled" value="true" />
However changing this to false will cause your site to never load! A better solution is to use the HTML Lifetime setting:
<!-- HTML LIFETIME
The lifetime of HTML fragments added to the cache.
Default value: 00:00:00 (ie. eternal life)
-->
<setting name="Caching.HtmlLifetime" value="00:00:00" />
Change this from 00:00:00 to 00:00:01.