History  | 
ShowFreeMem (BASIC command) 
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 
 | ||