util_memoize_flush_local

one of the documented procedures in this installation of the ACS
Usage:
util_memoize_flush_local   tcl_statement
What it does:
Flush the cached value only on the local server. In general you will want to use util_memoize_flush instead of this!
Defined in: /web/philip/packages/acs-core/utilities-procs.tcl

Source code:


    if [nsv_exists util_memoize_cache_value $tcl_statement] {
	nsv_unset util_memoize_cache_value $tcl_statement
    }
    if [nsv_exists util_memoize_cache_timestamp $tcl_statement] {
	nsv_unset util_memoize_cache_timestamp $tcl_statement
    }


philg@mit.edu