Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

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
xml
xml
titlefarcryConstructor.cfmxml
<cfset this.defaultProxyCacheTimeout = 120 />

If you want FarCry to default to no-cache headers:

Code Block
xml
xml
titlefarcryConstructor.cfmxml
<cfset this.defaultProxyCacheTimeout = 0 />

...