IMcResourceManagerMemoryUsed Property
|
|
Reports the amount of memory in use for a given use (type).
Namespace:
MediaCy.IQL.Engine
Assembly:
MediaCy.IQL.Engine (in MediaCy.IQL.Engine.dll) Version: 10.0.6912.0
Syntax
RemarksmcmtImageMemory type: The amount of memory currently in use for image pixel data as a
percentage of the maximum image memory usage. Note that this value may sometimes be more than
100%. The same value can be expressed as MBytes if the type is specified as
mcmtImageMemoryMBytes.
mcmtVirtualMemory: The amount of logical memory in use as a percentage of
allowed virtual memory usage. The same value can be expressed as MBytes if the type is specified as
mcmtVirtualMemoryMBytes.
mcmtPhysicalMemory: The amount of physical memory that is in use by all processes (not just
this application) as a percentage of total physical memory (not "usable physical memory").
The same value can be expressed as MBytes if the type is specified as
mcmtPhysicalMemoryMBytes.
"Available physical memory" is physical memory that can be immediately committed by the
operating system without needing to swap out any memory to the page file. "Usable
physical memory" is total physical memory minus a fixed amount reserved for use by other
processes. It is the maximum amount of physical memory that is allowed for alogrithm
use.
To determine the amount of physical memory that this application is using, call
MemoryManagerInfo(mcMemoryManagerInfo.mcmmiWorkingSet).
See Also