The setting that enables or disables a cache area for active use. The CacheStatus enumeration has constants defined for the cache status settings.

Valid settings are:

  • OPEN (default setting): Enables the cache area for active use.
  • CLOSED: Disables the cache area for active use.
  • CLEARING: Disables the cache area for active use, deletes all content from the cache, initializes the values for all cache statistical properties, and automatically resets the cache status to the previous setting (OPEN or CLOSED). Once started, this cache clearing operation always completes; you cannot stop the operation or manually change the cache status from CLEARING to any other setting. In order for the clearing operation to be performed and for the cache status not to remain set to CLEARING indefinitely, at least one server must be associated with the same site as that of the content cache. For information on associating a content cache with a site, see the IContentCacheConfiguration interface.

Namespace: FileNet.Api.Admin
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property CacheStatus As CacheStatus
C#
CacheStatus CacheStatus { get; set; }
C++
property CacheStatus CacheStatus abstract  {
    CacheStatus get();
    void set(CacheStatus value);
}
J#
/** property */
public CacheStatus get_CacheStatus();

/** property */
public void set_CacheStatus(CacheStatus value);
JScript
public function get CacheStatus() : CacheStatus

public function set CacheStatus(value : CacheStatus);

Remarks

See Also