builtins

getCacheInfo

Description

Retrieves information about CAS disk cache usage, the CAS server directory name, and the file system path for that cache.

Array
Settings
ParameterDescription
formatWhen set to False, return numeric values instead of human-readable formatted values. Alias: formatted Default: TRUE
Data Preparation View data prep sheet
N/A

This action retrieves existing CAS information and does not require explicit data creation in the examples provided.

Copied!
1/* No
2data creation code provided in the documentation for this action. */

Examples

This example shows how to retrieve and display CAS disk cache information.

SAS® / CAS Code Code awaiting community validation
Copied!
1PROC CAS;
2 BUILTINS.getCacheInfo;
3RUN;
4 
Result :
The CAS disk cache information, including usage and paths, will be displayed in a human-readable format.

This example shows how to retrieve CAS disk cache information in numeric, unformatted values.

SAS® / CAS Code Code awaiting community validation
Copied!
1PROC CAS;
2 BUILTINS.getCacheInfo / FORMAT=FALSE;
3RUN;
4 
Result :
The CAS disk cache information, including usage and paths, will be displayed in numeric, unformatted values.

FAQ

What is the getCacheInfo Action?
What is the 'format' parameter in getCacheInfo Action?