...
By default, FarCry doesn't add cache headers when no webskin specifies a proxy cache timeout. Use the defaultProxyCacheTimeout constructor setting to change this behaviour. To default to a 2 minute cache:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<cfset this.defaultProxyCacheTimeout = 120 /> |
If you want FarCry to default to no-cache headers:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<cfset this.defaultProxyCacheTimeout = 0 /> |
...