time-to-live

Purpose

Specifies the length of time that the cached entry is valid from the time it enters the cache.

Contained by

Attribute

Attribute Description Type Default Options Use
default The default period in seconds that the cached entry is valid.   3600   time, 'unlimited' optional 
maximum The maximum time that a policy can live in the cache.     time, 'unlimited'  optional 

Example

<?xml version="1.0" encoding="utf-8"?>
<project xmlns="http://www.volantis.com/xmlns/mcs/project"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  name="MyWelcomeProject">
  <assets base-url="."/>
  <policy-cache-partition size="100">
    <constraints>
      <cache allow="true" default="true">
        <time-to-live maximum="1000" default="50"/>
        <retry allow="true" default="false"/>
      </cache>
    </constraints>
    <type-partition size="200">
      <type>image</type>
      <type>layout</type>
      <constraints>
        <cache allow="true" default="true">
          <time-to-live maximum="1000" default="500"/>
          <retry default="true">
            <interval minimum="10" default="50"/>
            <max-count maximum="10" default="5"/>
          </retry>
        </cache>
      </constraints>
    </type-partition>
  </policy-cache-partition>
</project>

Related topics