util_memoize_flush

one of the documented procedures in this installation of the ACS
Usage:
util_memoize_flush   tcl_statement
What it does:
Flush the cached value (established with util_memoize associated with the argument). If clustering is enabled, flushes cached values from peers in the cluster.
Defined in: /web/philip/packages/acs-core/utilities-procs.tcl

Source code:


    if { [llength [info procs server_cluster_httpget_from_peers]] == 1 } {
	server_cluster_httpget_from_peers "/SYSTEM/flush-memoized-statement.tcl?statement=[ns_urlencode $tcl_statement]"
    }
    util_memoize_flush_local $tcl_statement


philg@mit.edu