The maximum number of rows that the Content Engine counts in the search results, if counting is enabled. This property overrides the SQL option of COUNT_LIMIT or the QueryCountDefaultSize property if either of those settings exceeds the value of this property.

You can set this property to the following values:

  • Null - The Content Engine counts the number of rows up to the Content Engine limit, which is Integer.Max_Value.
  • 0 (zero) - The count will not be returned.
  • N - An integer specifying the maximum number of rows that can be counted.

The default value is twice the value of the QueryPageMaxSize property.

To optimize result count performance, the administrator must take into account query time limit settings on the server. For more information, see the object store properties DefaultQueryTimeLimit, MaxQueryTimeLimit, and QueryDatabaseTimeLimit.

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

ToggleSyntax

Visual Basic (Declaration)
Property QueryCountMaxSize As Nullable(Of Integer)
C#
Nullable<int> QueryCountMaxSize { get; set; }
Visual C++
property Nullable<int> QueryCountMaxSize {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
JavaScript
function get_queryCountMaxSize();
function set_queryCountMaxSize(value);

ToggleRemarks

ToggleSee Also