NOTE: This property is now obsolete.

As of release 4.0.1.


The frequency with which the folder cache is to be purged when the cache exceeds the value of FolderCacheMaxEntries. A usage algorithm determines which folder entries are to be removed. Folder entries are removed from the cache until the number of entries in the cache is less than or equal to the value of FolderCacheMaxEntries.

The value for this property indicates that, whenever the cache exceeds the value of FolderCacheMaxEntries, n (the value specified) entries can be added to the cache before the purging algorithm will run.


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

Syntax

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

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

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

Remarks

See Also