Attention: Do not change the value of this property without guidance from a support representative. Doing so might adversely affect system performance.

This value, in combination with the MaxWorkerThreads parameter, establishes a threshold that, when exceeded, prevents additional batches of federation requests from being inserted in the in-memory pre-fetch queue. The number of items in the queue is reduced as batches of work are dispatched to worker threads. The number of batches in the queue will eventually fall below the threshold and the addition of new batches from the database queue will be resumed.


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

Syntax

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

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

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

Remarks

See Also