The CacheManager administers the static cache.
CacheableObject.clearCachePage()
BESCHREIBUNG:
The function deletes the current page out of the static cache.
| [1] |
Deletes the current page out of the static cache if the request parameter clearCache was given over:
<dtml-if clearCache> <dtml-call "clearCachePage()"> </dtml-if> |
CacheableObject.clearCache()
BESCHREIBUNG:
The function empties the complete static cache.
| [1] |
Empties the complete static cache if the request parameter emptyCache was given over:
<dtml-if "REQUEST.has_key('clear')">
<dtml-call "clearCache()">
</dtml-if>
|