Home > Contents > Index >
CATALOGMANAGER.flushpage
Deletes a page's cache file using the
CATALOGMANAGER
command.Syntax
<CATALOGMANAGER>
<ARGUMENT NAME="ftcmd" VALUE="flushpage" /> <ARGUMENT NAME="pagename" VALUE="name"</CATALOGMANAGER>Parameters
ftcmd (required)
- Value must be set to
flushpage
.
pagename (required)
- Name of page to be cleared from cache.
Notes
The
flushpage
tag does not return an error in either of the following situations:
- The specified pagename does not exist.
- A page with the supplied criteria does not exist.
As of CS 5.0, the
params
parameter can no longer be used.Description
Example
This example show how to call and flush the page named
arts2
from the disk cache. Also notice that in this example the valuecustom1id
andcustom2id
are contained on theresargs
column in the SiteCatalog.To call a page:
<SETVAR NAME="errno" VALUE="0"/> <CONTENTSERVER> <ARGUMENT NAME="pagename" VALUE="arts2"/> <ARGUMENT NAME="custom1id" VALUE="pass1"/> <ARGUMENT NAME="custom2id" VALUE="show2"/> </CONTENTSERVER> <IF COND="IsError.Variables.errno=true"> <THEN> <!--Handle error--> </THEN> </IF>To flush a page:
<SETVAR NAME="errno" VALUE="0"/> <CATALOGMANAGER> <ARGUMENT NAME="ftcmd" VALUE="flushpage"/> <ARGUMENT NAME="pagename" VALUE="arts2"/> </CATALOGMANAGER> <IF COND="IsError.Variables.errno=true"> <THEN> <!--Handle error--> </THEN> </IF>
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.