Specifies the Time-To-Live value (TTL) value (in seconds) for the Global Configuration Database (GCD) cache. The range of values is 1 to 3600 seconds with a default of 30 seconds. The cache is flushed following the completion of a transaction (update) and automatically reloaded on the updating server. Following the expiration of this TTL value a database query is issued, at which time the software determines whether the cached data is stale or not.

Multiple server configurations might require a more frequent cache update polling interval (that is, a smaller TTL value) if GCD updates are a normal occurrence. However, since objects residing in the GCD are designed to be static in nature, updates to GCDCacheTTL are unlikely.

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

Syntax

Visual Basic (Declaration)
Property GCDCacheTTL As Nullable(Of Integer)
C#
Nullable<int> GCDCacheTTL { get; set; }
C++
property Nullable<int> GCDCacheTTL abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_GCDCacheTTL();

/** property */
public void set_GCDCacheTTL(Nullable<intvalue);
JScript
public function get GCDCacheTTL() : Nullable<int>

public function set GCDCacheTTL(value : Nullable<int>);

Remarks

See Also