Small company logo:
   History
 
Advertising banner:
 
 ShowFreeMem
Home • Help • Customization Tools • FCAS • Language Reference • ShowFreeMem
 
Purpose
Displays debugging information about free memory on the application server to the console log.
This can be used to automate tracking of memory usage over time through custom FCAS applications.
Syntax
ShowFreeMem
Example
Do While TRUE
        Console ("Periodic memory report: ")
        ShowFreeMem
        Sleep (60*5)
Loop