Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the cache size for the table, in the number of records.
Syntax
public int cacheSize()
Run On
Called
Return Value
Type: int
The cache size for the table.
Examples
The following example retrieves the cache size for a table.
DictTable dt;
dt = new DictTable(tablenum(SysUserInfo));
if (dt)
{
print strfmt("Cache size: %1", dt.cacheSize());
}