Caches the servlet output. ExpiresFilter sets the Expires header
to a time in the filter. The page will be cached until that time
expires.
The cache-time init-parameter configures how long the page should be
cached:
<filter>
<filter-name>expires-cache</filter-name>
<filter-class>com.caucho.http.filter.ExpiresFilter</filter-class>
<init-param cache-time='10s'/>
</filter>
The cache-time allows the standard extensions:
s | seconds
| m | minutes
| h | hours
| D | days
| W | weeks
| M | months
| Y | years
|
since: Resin 2.0.5 |