You are here:   » Home » Documentation » Details » ZMS API » acc. to Objects » _cachemanager

_cachemanager.CacheManager

The CacheManager administers the static cache.

CacheableObject.clearCachePage()

BESCHREIBUNG:
The function deletes the current page out of the static cache.

BEISPIELE
[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.

BEISPIELE
[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>